furyu-tei (56)

Amazon MusicのプレイリストをCSV形式でダウンロード

(()=>{const headers=[{key:'no',name:'No.'},{key:'music_title',name:'曲'},{key:'music_url',name:'...

Twitter(X)のユーザープロフィールからメディア検索画面に遷移する

(()=>{'use strict';const media_tab=document.querySelector('[role="presentation"] a[href$="/media"...

Twitterの個別ツイート(https://twitter.com/<name>/status/<id>)のURL(<id>)からおおよその投稿時刻を...

(()=>{'use strict';const twitter_epoch_time=1288834974657n,threshold_tweet_id=300000000000000n;le...
furyu-tei OpenKCR2023-07-13

Kindleの個別商品ページからKindle Cloud Readerを開く

(()=>{const is_kindle_page=()=>{const kindle_mark=document.querySelector('#bylineInfo > span:nth-...
furyu-tei MS日英切替2023-04-05

マイクロソフトのサポートページで日本語ページ⇔英語ページを切り替える

(()=>{let matches=location.href.match(/^https?:\/\/(docs|support|learn)\.microsoft\.com\/(.+?)-(....

Twitterでシェアする際のツイート内容を自分用にカスタマイズ(※アソシエイトツールバー有効時のみ)

(()=>{const show_text_link=()=>{document.querySelector('#amzn-ss-text-link a').click()},get_short...

現在のページのURLとタイトルをリンク記法でコピー

((title,url)=>{'use strict';const copy_to_clipboard=text_to_copy=>{if(navigator.clipboard&&window...

Google検索等で付加されるScroll To Text Fragment(#:~:text=~)を除去

(()=>{'use strict';const url_object=new URL(location.href);if(!/^#:~:text=/.test(decodeURICompone...

メディア(画像・動画)付きツイートをスタンプ風に引用(=メディアのみ引用)してツイート(個別ツイー...

(async()=>{'use strict';const tweet_urlobj=new URL(location.href),matches=tweet_urlobj.pathname.m...

今後は https://greasyfork.org/ja/scripts/417287-twfleetcapture 参照(Twitterユーザープロフィール...

(()=>{'use strict';const fetch_api=api_url=>fetch(api_url,{method:'GET',headers:{authorization:'B...

Twitterユーザーのscreen_nameからユーザーIDを取得する

(()=>{'use strict';let screen_name=window.getSelection().toString()||prompt('Input screen name of...

http://java.cocolog-nifty.com/blog/2005/10/javascript_c163.html の移植版(jQuery使用)

(function(){'use strict';window.cocolog_ajax_search_options={color:'#ffcc33',truncation_length:80...

今後は https://greasyfork.org/ja/scripts/411491-yn-searchorigin 参照(Yahoo!ニュースでは元記事へ...

(()=>{'use strict';const yahoo_news_hostname=new URL(location.href).hostname,cwin=window.open('ab...

Twitterで引用ツイートを嫌がる方のツイートを引用したい場合に使ってみる?

(()=>{const width=1024,height=768;let matches=new URL(location.href).pathname.match(/^\/([^/]+)\/...

今後は https://greasyfork.org/ja/scripts/400695-i-like-latest-tweets 参照(Twitter のタイムライン...

(()=>{let status='idle';const FixToLatestTweetTimeline=new class{constructor(){this.status='idle'...
furyu-tei α解禁2020-04-14

今後は https://greasyfork.org/ja/scripts/400666-alphakaikin 参照(アルファポリス小説本文の範囲選...

(()=>{const remove_copyguard=()=>{$(window).on('focusout',(event=>event.stopImmediatePropagation(...

今後は https://greasyfork.org/ja/scripts/400664-letmeusef12 参照([F12]ほか制限されている幾つかの...

(()=>{const allowd_keycode_map={116:{combinations:[]},122:{combinations:[]},123:{combinations:[]}...

今後は https://greasyfork.org/ja/scripts/400661-reloadsuppression-tameshiyo-me 参照(楽園WEB増刊...

(()=>{const patch_func=()=>{const setTimeoutOrig=window.setTimeout;window.setTimeout=function(fun...

今後は https://greasyfork.org/ja/scripts/398038-kindle-unlimited-filter を参照 (Amazon Kindle検...

(()=>{let unlimited_checkbox=document.querySelector('input[name="s-ref-checkbox-3169286051"]');if...

非ASCII文字を含むURLのエンコードする(※IE非対応) 元ネタ:[非ASCII文字を含むURLのエンコード](https...

((s_url,d_url,base)=>{const enc_ch={'(':'%28',')':'%29',"'":'%27','@':'%40','.':'%2E','\\':'%5C'}...
1 2 3