+The Old Reader

    @@ -1,12 +1,13 @@ /* - * @title subscriber skeleton - * @description subscribe to feed skeleton + * @title +The Old Reader + * @description subscribe to feed in The Old Reader * @include http://* * @include https://* * @license MIT License http://opensource.org/licenses/MIT * @require */ +// c.f. "Tips & Tricks" in https://theoldreader.com/pages/tour (function () { var query = [ 'link[href][rel=alternate][type^="application/atom"]', @@ -15,8 +16,7 @@ var feed = document.querySelector(query); if (!feed) return; - var reader = 'http://reader.example.com/'; - /*/ + // IDKWTD faild in https, said "You have not provided URL" + var reader = 'http://theoldreader.com/feeds/subscribe?url='; location.href = reader + encodeURIComponent(feed.href); - //*/ -})(); +})();
  • /*
     * @title +The Old Reader
     * @description subscribe to feed in The Old Reader
     * @include http://*
     * @include https://*
     * @license MIT License http://opensource.org/licenses/MIT
     * @require 
     */
    
    // c.f. "Tips & Tricks" in https://theoldreader.com/pages/tour
    (function () {
        var query = [
                'link[href][rel=alternate][type^="application/atom"]',
                'link[href][rel=alternate][type^="application/rss"]'
        ].join(',');
        var feed = document.querySelector(query);
        if (!feed) return;
    
        // IDKWTD faild in https, said "You have not provided URL"
        var reader = 'http://theoldreader.com/feeds/subscribe?url=';
        location.href = reader + encodeURIComponent(feed.href);
    })();
  • Permalink
    このページへの個別リンクです。
    RAW
    書かれたコードへの直接のリンクです。
    Packed
    文字列が圧縮された書かれたコードへのリンクです。
    Userscript
    Greasemonkey 等で利用する場合の .user.js へのリンクです。
    Loader
    @require やソースコードが長い場合に多段ロードする Loader コミのコードへのリンクです。
    Metadata
    コード中にコメントで @xxx と書かれたメタデータの JSON です。

History

  1. 2017/02/20 04:17:54 - 2017-02-20
  2. 2017/02/20 04:11:54 - 2017-02-20
  3. 2014/09/30 03:50:09 - 2014-09-30
  4. 2013/07/22 02:44:49 - 2013-07-22
  5. 2013/07/22 02:32:46 - 2013-07-22
  6. 2013/07/22 02:31:46 - 2013-07-22