Home » Tool&Tips » お役立ちBookmarklet

お役立ちBookmarklet

2014/07/18 2014/07/28 2015/01/03 2015/03/21 2015/10/30 2015/11/08 2015/12/20 2022/02/03

Webページで使う / Webページを探す / 文字列を探す・使う

Webページで使う

  1. ソース表示

    見ているページのソースを表示、再読み込みで元に戻ります。

    javascript:var%20d=document;var%20o=d.documentElement;d.write("<pre>"+(o.outerHTML||o.innerHTML).replace(/&/g,"&amp;").replace(/</g,"&lt;").replace(/>/g,"&gt;")+"</pre>");
    

    » via: mume@Qiita 2022/02/03

  2. CSS無効化

    見ているページのCSSを無効化、再読み込みで元に戻ります。

    javascript:function%20tC(v,nf){if(document.getElementsByTagName('link')){links=document.getElementsByTagName('link');for(i=0;i<links.length;i++){link=links[i];if(link.href.indexOf('css')>=0|link.href.indexOf('CSS')>=0|link.type=='text/css'){link.disabled=v;}}}if(document.getElementsByTagName('style')){styles=document.getElementsByTagName('style');for(j=0;j<styles.length;j++){style=styles[j];style.disabled=v;}}document.getElementsByTagName('head')[0].id=nf;}if(document.getElementById('cssOFF')){tC(false,'cssON');}else{tC(true,'cssOFF');};
    

    » via: Fsiki 2014/07/28

  3. List All Links (URL)

    見ているページでリンクされているURLをリストアップします。

    javascript:WN7z=open('','Z6','width=400,height=200,scrollbars,resizable,menubar');DL5e=document.links;with(WN7z.document){write('<base%20target=_blank>');for(lKi=0;lKi<DL5e.length;lKi++){write(DL5e[lKi].toString().link(DL5e[lKi])+'<br><br>')};void(close())};
    

    » via: K'conf 2014/07/18

  4. View Cookies

    見ているページのクッキーを表示します。

    javascript:if(document.cookie.length<1){alert('No cookie for this site.')}else{alert('Cookie for this site:\n\n'+document.cookie.replace(/; /g,'\n'))};
    

    » via: K'conf 2015/11/08

  5. Removes Cookies

    見ているページのクッキーを削除します。

    javascript:(function(){C=document.cookie.split(';%20');for(d='.'+location.host;d;d=(''+d).substr(1).match(/\..*$/))for(sl=0;sl<2;++sl)for(p='/'+location.pathname;p;p=p.substring(0,p.lastIndexOf('/')))for(i%20in%20C)if(c=C[i]){document.cookie=c+';%20domain='+d.slice(sl)+';%20path='+p.slice(1)+'/'+';%20expires='+new%20Date((new%20Date).getTime()-1e11).toGMTString()}})();
    

    » via: K'conf 2015/11/08

  6. サイト内検索

    見ているサイト内を Google で検索します。

    javascript:(function(){var q='';if(window.getSelection){q=window.getSelection().toString();}else{q=document.selection.createRange().text;}q=prompt('Input your search words.',q);if(q!=''){var query='?q='+q+'&num=50&hl=ja&lr=lang_ja&as_sitesearch='+window.location.hostname;window.open('https://www.google.jp/search'+query,'_blank');}})();
    

    » 2015/03/21

  7. キンドル立ち読み(別ウィンドウ)

    AmazonKindleストア の販売ページで電子書籍サンプルの生データを閲覧できます。(閲覧不可の商品もあり)

    javascript:(function(){var%20loc=location.href;if(loc.match(/\/dp\/([^/&\?\%]+)/)||loc.match(/\/obidos\/ASIN\/([^/&\?\%]+)/)||loc.match(/\/gp\/product\/([^/&\?\%]+)/)||loc.match(/\/o\/asin\/([^/&\?\%]+)/))var%20url='http://kindleweb.s3.amazonaws.com/content/'+RegExp.$1+'/gz_sample.html';window.open(url,'_blank');})();
    

    » 2015/01/03

Webページを探す

  1. Twitter(別ウィンドウ)

    見ているページを Twitter で検索、別ウィンドウで表示します。

    javascript:window.open('https://twitter.com/search?f=tweets&q='+encodeURIComponent(location.href));void(0);
    

    » 2022/02/03

  2. はてなブックマーク(別ウィンドウ)

    見ているページを はてなブックマーク で検索、別ウィンドウで表示します。

    javascript:window.open('http://b.hatena.ne.jp/entry/'+encodeURIComponent(location.href));void(0);
    

    » 2015/01/03

  3. Google キャッシュ(別ウィンドウ)

    見ているページの Google キャッシュを別ウィンドウで表示します。

    javascript:window.open('http://webcache.googleusercontent.com/search?q=cache:'+encodeURIComponent(location.href));void(0);
    

    » 2015/10/30

  4. Internet Archive(別ウィンドウ)

    見ているページを Internet Archive で検索、別ウィンドウで表示・保存します。

    javascript:window.open('http://web.archive.org/*/'+encodeURIComponent(location.href));void(0);
    

    » 2015/10/30

  5. ウェブ魚拓(別ウィンドウ)

    見ているページを ウェブ魚拓 で検索、別ウィンドウで表示・保存します。

    javascript:window.open('http://gyo.tc/'+encodeURIComponent(location.href));void(0);
    

    » via: GitHub 2015/10/30

文字列を探す・使う

  1. URL encode

    選択した文字列をURLエンコードします。

    javascript:(function(){var%20d=document;var%20w=window;var%20t;if(d.selection){t=d.selection.createRange().text;}else%20if(w.selection){t=w.selection.createRange().text;}else%20if(d.getSelection){t=d.getSelection();}else%20if(w.getSelection){t=w.getSelection();}else{t='';}function%20e(t){prompt('Encoded!',encodeURIComponent(t));}if(t==null||t==''){if(t=prompt('Input%20text%20you%20want%20to%20Encode')){e(t);}}else{e(t);}})();
    

    » via: Creazy! 2014/07/18

  2. Google日本語版で検索(別ウィンドウ)

    選択した文字列を Google日本語版 で検索、結果を別ウィンドウで表示します。

    javascript:var%20d=document;%20var%20word=d.selection?d.selection.createRange().text:d.getSelection();%20var%20subw=window.open('https://www.google.co.jp/search?q='+word).document;
    

    » 2015/11/14

  3. Yahoo! JAPANで検索(別ウィンドウ)

    選択した文字列を Yahoo! JAPAN で検索、結果を別ウィンドウで表示します。

    javascript:var%20d=document;%20var%20word=d.selection?d.selection.createRange().text:d.getSelection();%20var%20subw=window.open('http://search.yahoo.co.jp/search?p='+word).document;
    

    » 2015/11/15

  4. Twitterで検索(別ウィンドウ)

    選択した文字列を Twitter で検索、結果を別ウィンドウで表示します。

    javascript:var%20d=document;%20var%20word=d.selection?d.selection.createRange().text:d.getSelection();%20var%20subw=window.open('https://twitter.com/search?q='+word).document;
    

    » 2015/11/14

  5. Wikipedia日本語版で検索(別ウィンドウ)

    選択した文字列を Wikipedia 日本語版で検索、結果を別ウィンドウで表示します。

    javascript:var%20d=document;%20var%20word=d.selection?d.selection.createRange().text:d.getSelection();%20var%20subw=window.open('https://ja.wikipedia.org/wiki/'+word).document;
    

    » 2015/11/15

  6. Weblio類語辞典で検索(別ウィンドウ)

    選択した文字列を Weblio類語辞典 で検索、結果を別ウィンドウで表示します。

    javascript:var%20d=document;%20var%20word=d.selection?d.selection.createRange().text:d.getSelection();%20var%20subw=window.open('http://thesaurus.weblio.jp/content/'+word).document;
    

    » 2015/11/15

関連


(`ー∇ー´)φ Kindle本、始めました。

河馬追物 [Kindle版] / 越智 夕恵

動物をモチーフにした短編集。5作品を収録。

『信濃の国は』移住した信州での日々。

『カッコウの呼ぶ声』近未来の男女に関する一考察。

『月のウサギ』今昔物語に拠る戯曲。

『登攀ガエル』ニホンアマガエルとの交流。

『河馬追物』都会の奇妙な追跡劇。

[Kindle価格]¥100.