Twiload

  • /*
     * @title Twiload
     * @description autoload new tweets on twitter.com
     * @include https://twitter.com/*
     * @license MIT License https://opensource.org/licenses/MIT
     * @javascript_url
     */
    
    (() => {
        'use strict';
    
        const load = () => {
            const expander = document.body.querySelector('.new-tweets-bar');
            if (!expander) return;
    
            expander.click();
        };
        load();
    
        const INTERVAL = 5000;
        setInterval(load, INTERVAL);
    })();
    
    
  • Permalink
    このページへの個別リンクです。
    RAW
    書かれたコードへの直接のリンクです。
    Packed
    文字列が圧縮された書かれたコードへのリンクです。
    Userscript
    Greasemonkey 等で利用する場合の .user.js へのリンクです。
    Loader
    @require やソースコードが長い場合に多段ロードする Loader コミのコードへのリンクです。
    Metadata
    コード中にコメントで @xxx と書かれたメタデータの JSON です。

History

  1. 2017/03/28 01:11:14 - 2017-03-28
  2. 2017/03/27 06:53:21 - 2017-03-27