ついったーのwebでTL自動更新

    @@ -11,7 +11,9 @@ document.getElementsByClassName('new-tweets-bar js-new-tweets-bar')[0].click(); } - while(document.querySelectorAll('html body.t1 div#doc div#page-outer div#page-container.wrapper div#timeline.content-main div.stream-container div.stream ol#stream-items-id.stream-items li.js-stream-item div.tweet').length!=0){ - document.querySelector('html body.t1 div#doc div#page-outer div#page-container.wrapper div#timeline.content-main div.stream-container div.stream ol#stream-items-id.stream-items li.js-stream-item div.tweet').parentNode.parentNode.removeChild(document.querySelector('html body.t1 div#doc div#page-outer div#page-container.wrapper div#timeline.content-main div.stream-container div.stream ol#stream-items-id.stream-items li.js-stream-item div.tweet').parentNode); + // アカウント + while(document.querySelector('.promoted-account').length!=0){ + document.querySelector('.promoted-account').parentNode.parentNode.removeChild(document.querySelector('.promoted-account').parentNode); } + }),1000);
  • /*
     * @title ついったーのwebでTL自動更新
     * @description document.getElementsByClassName('new-tweets-bar js-new-tweets-bar')[0]を定期的にクリックするだけ。ではなくなった。
     * @include https://twitter.com/*
     * @license MIT License
     */
    
    
    setInterval((function(){
    		if(document.getElementsByClassName('new-tweets-bar js-new-tweets-bar').length>0){
    			document.getElementsByClassName('new-tweets-bar js-new-tweets-bar')[0].click();
    		}
    
    		// アカウント
    		while(document.querySelector('.promoted-account').length!=0){
    			document.querySelector('.promoted-account').parentNode.parentNode.removeChild(document.querySelector('.promoted-account').parentNode);
    		}
    
    	}),1000);
    
  • Permalink
    このページへの個別リンクです。
    RAW
    書かれたコードへの直接のリンクです。
    Packed
    文字列が圧縮された書かれたコードへのリンクです。
    Userscript
    Greasemonkey 等で利用する場合の .user.js へのリンクです。
    Loader
    @require やソースコードが長い場合に多段ロードする Loader コミのコードへのリンクです。
    Metadata
    コード中にコメントで @xxx と書かれたメタデータの JSON です。

History

  1. 2013/05/19 14:06:01 - 2013-05-19
  2. 2013/03/25 14:38:26 - 2013-03-25
  3. 2013/03/25 14:34:47 - 2013-03-25
  4. 2013/03/24 15:15:03 - 2013-03-24
  5. 2013/03/24 15:09:17 - 2013-03-24
  6. 2013/03/24 14:43:36 - 2013-03-24
  7. 2013/03/24 14:37:29 - 2013-03-24
  8. 2013/03/24 14:26:32 - 2013-03-24
  9. 2013/03/24 14:25:49 - 2013-03-24
  10. 2013/03/06 17:46:30 - 2013-03-06