blob: e279b324e383eded3aafce7db0e80059b8e0d728 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
|
/**
* bookmarklet wo command ni suru plugin
*
* @author halt feits <halt.feits@gmail.com>
* @version 0.6.0
*/
(function(){
var filter = "javascript:";
var items = liberator.bookmarks.get(filter);
if (items.length == 0) {
if (filter.length > 0) {
liberator.echoerr("E283: No bookmarks matching \"" + filter + "\"");
} else {
liberator.echoerr("No bookmarks set");
}
}
for (var i = 0; i < items.length; i++) {
var title = liberator.util.escapeHTML(items[i][1]);
if (title.length > 50) {
title = title.substr(0, 47) + "...";
}
var url = liberator.util.escapeHTML(items[i][0]);
var command = new Function('', 'liberator.open("' + url + '");');
liberator.commands.addUserCommand(
[title],
'bookmarklet',
command,
{
shortHelp: 'bookmarklet',
}
);
}
})();
|