This is a way to access bookmarks with completion via a webjump.
define_webjump("bookmark",
function(term) {return term;},
$completer = history_completer($use_history = false,
$use_bookmarks = true,
$match_required = true),
$description = "Visit a conkeror bookmark");
1. Online/social bookmarking
1.1. Delicious (del.icio.us)
Delicious webjumps can be added by putting the following in your conkeror rc file:
define_delicious_webjumps("myusername");this will create the following webjumps:
adelicious |
Add a delicious bookmark. |
delicious |
View your delicious bookmarks |
sdelicious |
Search your delicious bookmarks |
sadelicious |
Search all delicious bookmarks |
1.2. Digg
Add story to Digg.com:
define_webjump("adigg","javascript:location.href='http://www.digg.com/submit?url='+encodeURIComponent(location.href);");
1.3. Google Reader
Add a webpage to your Google Reader shared items (with notes if desired):
define_webjump("readgoogle-share", "javascript:var%20b=document.body;var%20GR________bookmarklet_domain='https://www.google.com';if(b&&!document.xmlVersion){void(z=document.createElement('script'));void(z.src='https://www.google.com/reader/ui/link-bookmarklet.js');void(b.appendChild(z));}else{}");
1.4. Reddit
Share site on Reddit:
define_webjump("areddit","javascript:location.href='http://www.reddit.com/submit?url='+encodeURIComponent(window.location)+'&title='+"+"encodeURIComponent(document.title);");
1.5. Stumbleupon
Add favourites to Stumbleupon.com:
define_webjump("astumble","javascript:location.href='http://www.stumbleupon.com/submit?url='+encodeURIComponent(location.href)+'&title='+"+"encodeURIComponent(document.title);");