2139 links
238 private links
  • Ginko's Link Dump
  • Home
  • Login
  • RSS Feed
  • ATOM Feed
  • Tag cloud
  • Picture wall
  • Daily
Links per page: 20 50 100
13 results tagged bookmarklet x
  • Bookmarklets | Bookmarklet Search Engine

    Un nouveau site de bookmarklets. À creuser.

    July 26, 2015 at 8:34:41 PM GMT+2 - permalink -
    QRCode
    - archive.org - http://marklets.com/
    bookmarklet
  • Rue89

    Evite de passer par feedrunner en passant par DuckDuckGo

    June 15, 2015 at 7:17:59 PM GMT+2 - permalink -
    QRCode
    - archive.org - javascript:(function(){result%20=%20document.evaluate('//a[@class=\'item-link\']',%20document,%20null,%20XPathResult.ORDERED_NODE_SNAPSHOT_TYPE,%20null);%20%20%20for%20(var%20i%20=%200;%20i%20<%20result.snapshotLength;%20i++)%20%20%20{%20%20%20%20%20thisNode%20=%20result.snapshotItem(i);%20%20%20%20%20if%20(thisNode.href.contains('rue89.feedsportal.com'))%20{%20%20%20%20%20%20%20target%20=%20'https://duckduckgo.com/?q='%20+%20'site:rue89.nouvelobs.com+'%20+%20encodeURIComponent(thisNode.text)%20+%20'+!';%20%20%20%20%20%20%20thisNode.href%20=%20target;%20%20%20%20%20}%20%20%20}})();
    bookmarklet
  • Youtube Playlist Feed

    A utiliser sur une playlist youtube, évidemment.

    Update 10/06/2015 : obsolète sur à la nouvelle version de l'API youtube (j't'entube)...

    January 1, 2015 at 1:23:49 PM GMT+1 - permalink -
    QRCode
    - archive.org - javascript:(function(){var%20l%20=%20document.location.href.replace(/.*list=PL([^&]*).*/,%20"https://gdata.youtube.com/feeds/api/playlists/\$1");%20window.open(l)})();
    youtube bookmarklet
  • Domain

    Keeps location.origin, that is :

    • protocol
    • host
    • port
      Removes the rest.
    November 25, 2014 at 5:40:38 PM GMT+1 - permalink -
    QRCode
    - archive.org - javascript:void(location=location.origin)
    bookmarklet
  • Clean URL

    Keeps :

    • protocol
    • host
    • port
    • pathname
      Removes :
    • search (GET parameters)
    • hash (anchor)
    November 25, 2014 at 5:38:53 PM GMT+1 - permalink -
    QRCode
    - archive.org - javascript:void(location=location.origin+location.pathname)
    bookmarklet
  • Display links

    Displays csv of links and their texts into dialog box.
    Pretty rough but simple and does the job.

    November 20, 2014 at 12:02:30 AM GMT+1 - permalink -
    QRCode
    - archive.org - javascript:(function(){plop = new Array();for (var i = 0; i < document.links.length; i++) { l = document.links[i]; plop.push(l.href + ";" + l.text)};prompt(plop)})();
    bookmarklet
  • Youtube User Feed

    Go to the user's page : www.youtube.com/user/<some user hash> and lauch the bookmarklet to open the URL of the corresponding feed !

    Updated (20150804 to new the youtube API)

    November 18, 2014 at 12:18:42 AM GMT+1 - permalink -
    QRCode
    - archive.org - javascript:(function(){var%20l%20=%20document.location.href.replace(/user\/(.*)/,%20"feeds/videos.xml?user=\$1");%20window.open(l)})();
    bookmarklet
  • Explain XKCD

    New (handles https from xkcd - explainxkcd does not handle https)
    javascript:(function(){document.location = document.location.href.replace(/https?\:\/\//, 'http://explain')})();
    Old
    javascript:(function(){document.location.host = 'explain' + document.location.host})();

    April 30, 2014 at 8:44:38 PM GMT+2 - permalink -
    QRCode
    - archive.org - javascript:(function(){document.location = document.location.href.replace(/https?\:\/\//, 'http://explain')})();
    bookmarklet
  • Open selected links
    April 23, 2014 at 11:36:39 AM GMT+2 - permalink -
    QRCode
    - archive.org - javascript:(function(){var%20n_to_open,dl,dll,i,%20l;%20function%20linkIsSafe(u)%20{%20if%20(u.substr(0,7)=='mailto:')%20return%20false;%20if%20(u.substr(0,11)=='javascript:')%20return%20false;%20return%20true;%20}%20n_to_open%20=%200;%20dl%20=%20document.links;%20dll%20=%20dl.length;%20if%20(window.getSelection%20&&%20window.getSelection().containsNode)%20{%20/*%20mozilla%20*/%20for(i=0;%20i<dll;%20++i)%20{%20if%20(window.getSelection().containsNode(dl[i],%20true)%20&&%20linkIsSafe(dl[i].href))%20++n_to_open;%20}%20for(i=0;%20i<dll;%20++i)%20if%20(window.getSelection().containsNode(dl[i],%20true)%20&&%20linkIsSafe(dl[i].href))%20window.open(dl[i].href)%20}%20/*%20/mozilla%20*/%20if%20(!n_to_open)%20{%20/*ie,%20or%20mozilla%20with%20no%20links%20selected:%20this%20section%20matches%20open_all_links,%20except%20for%20the%20alert%20text%20*/%20for(i%20=%200;%20i%20<%20dll;%20++i)%20{%20if%20(linkIsSafe(dl[i].href))%20++n_to_open;%20}%20if%20(!n_to_open)%20alert%20('no%20links');%20else%20{%20if%20(confirm('No%20links%20selected.%20%20Open%20'%20+%20n_to_open%20+%20'%20links%20in%20new%20windows?'))%20for%20(i%20=%200;%20i%20<%20dll;%20++i)%20if%20(linkIsSafe(dl[i].href))%20window.open(dl[i].href);%20}%20}%20})();
    bookmarklet
  • Open Numerical Links
    April 23, 2014 at 11:35:35 AM GMT+2 - permalink -
    QRCode
    - archive.org - javascript:(function(){var%20n_to_open,dl,dll,i,l;%20function%20linkIsSafe(u){if(u.substr(0,7)==%20'mailto:')return%20false;if(u.substr(0,11)==%20'javascript:')return%20false;return%20true;}n_to_open%20=%200;dl%20=%20document.links;dll%20=%20dl.length;if(window.getSelection%20&&%20window.getSelection().containsNode){/*%20mozilla%20*/%20for(i%20=%200;i%20<%20dll;++i){if(window.getSelection().containsNode(dl[i],true)&&%20linkIsSafe(dl[i].href)){l%20=%20dl[i].href;break;}}l%20=%20l.replace(/\.html?$/,'').replace(/\.php$/,'').replace(/\d{2}$/,'');for(i%20=%200;i%20<%20dll;++i){if(dl[i].href.match(l))window.open(dl[i].href);%20++n_to_open;}}/*%20/mozilla%20*/%20if(!n_to_open){/*ie,or%20mozilla%20with%20no%20links%20selected:this%20section%20matches%20open_all_links,except%20for%20the%20alert%20text%20*/%20for(i%20=%200;i%20<%20dll;++i){if(linkIsSafe(dl[i].href))++n_to_open;}if(!n_to_open)alert('no%20links');else{if(confirm('No%20links%20selected.Open%20'%20+%20n_to_open%20+%20'%20links%20in%20new%20windows?'))for(i%20=%200;i%20<%20dll;++i)if(linkIsSafe(dl[i].href))window.open(dl[i].href);}}})();
    bookmarklet
  • Wayback Save
    April 8, 2014 at 6:22:58 PM GMT+2 - permalink -
    QRCode
    - archive.org - javascript:void(location.href='http://web.archive.org/save/'+document.location.href)
    bookmarklet
  • Wayback
    April 8, 2014 at 6:22:37 PM GMT+2 - permalink -
    QRCode
    - archive.org - javascript:void(location.href='http://web.archive.org/web/*/'+document.location.href)
    bookmarklet
  • Show anchors
    April 8, 2014 at 5:33:41 PM GMT+2 - permalink -
    QRCode
    - archive.org - javascript:(function(){/*%20v2.2%20--%20http://bit.ly/7akCur%20*/function%20ls(u,c){var%20h=document.getElementsByTagName("head")[0];var%20s=document.createElement("script");s.src=u;var%20d=false;s.onload=s.onreadystatechange=function(){if(!d&&(!this.readyState||this.readyState=="loaded"||this.readyState=="complete")){d=true;c();s.onload=s.onreadystatechange=null;h.removeChild(s);}};h.appendChild(s);}var%20$;var%20loc=location.href;var%20anchorPos=location.href.lastIndexOf('#');if(anchorPos>-1){loc=loc.substring(0,anchorPos);/*%20if%20already%20has%20an%20anchor,%20it%20needs%20to%20be%20replaced%20*/}function%20a(e,n,t){$('<a%20href="'+loc+'#'+n+'"%20title="'+t+':%20'+n+'"><img%20src="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABGdBTUEAAK/INwWK6QAAABl0RVh0U29mdHdhcmUAQWRvYmUgSW1hZ2VSZWFkeXHJZTwAAAGdSURBVDjLpVMxa8JAFL6rAQUHXQoZpLU/oUOnDtKtW/MDBFHHThUKTgrqICgOEtd2EVxb2qFkKTgVChbSCnZTiVBEMBRLiEmafleCDaWxDX3w8e7dve+7l3cv1LZt8h/jvA56vV7DNM20YRgE/jyRSOR+ytvwEgAxvVwui/BF+LTvCtjNwKvj/X8CbgXPOHMEZl559HsTu93uPQi7jBiNRgMEx8PR0GIxRB+y2eze2gqQeAXoSCaqqu5bpsWIdyzGvvRrBW7rdDo2I6ZSKeq7B8x0XV/bwJWAJEnHSMwBDUEQWq5GfsJthUJhlVuv11uckyiGgiH2RWK73RYRb2cymbG7gnK5vIX9USwWI1yAI/KjLGK7teEI8HN1TizrnZWdRxxsNps8vI3YLpVKbB2EWB6XkMHzgAlvriYRSW+app1Mpy/jSCRSRSyDUON5nuJGytaAHI/vVPv9p/FischivL96gEP2bGxorhVFqYXDYQFCScwBYa9EKU1OlAkB+QLEU2AGaJ7PWKlUDiF2BBw4P9Mt/KUoije+5uAv9gGcjD6Kg4wu3AAAAABJRU5ErkJggg%3D%3D"%20/></a>').insertBefore(e);}ls("http://ajax.googleapis.com/ajax/libs/jquery/1.3/jquery.min.js",function(){$=jQuery;$("a[name]").each(function(i){a(this,this.name,"NAME");});$("[id]:not(input[type='hidden'])").each(function(i){a(this,this.id,"ID");});});})()
    bookmarklet
Links per page: 20 50 100
Shaarli - The personal, minimalist, super-fast, database free, bookmarking service by the Shaarli community - Help/documentation