+Feedeen

    @@ -11,11 +11,10 @@ (() => { 'use strict'; - const query = [ - 'link[href][rel=alternate][type^="application/atom"]', - 'link[href][rel=alternate][type^="application/rss"]', - ].join(','); - const feed = document.querySelector(query); + const feed = document.querySelector([ + 'link[href][rel=alternate][type^="application/atom"]', + 'link[href][rel=alternate][type^="application/rss"]', + ]); if (!feed) return; // http://feedeen.blogspot.com/2014/03/make-feedeen-the-default-feed-reader.html
  • /*
     * @title +Feedeen
     * @description subscribe to feed on Feedeen
     * @include http://*
     * @include https://*
     * @Contributor noromanba   http://let.hatelabo.jp/noromanba/let/gYC-x-_E8PL0OA
     * @license MIT License     http://opensource.org/licenses/MIT
     * @javascript_url
     */
    
    (() => {
        'use strict';
    
        const feed = document.querySelector([
            'link[href][rel=alternate][type^="application/atom"]',
            'link[href][rel=alternate][type^="application/rss"]',
        ]);
        if (!feed) return;
    
        // http://feedeen.blogspot.com/2014/03/make-feedeen-the-default-feed-reader.html
        const reader = 'https://feedeen.com/subscribe?u=';
        window.open(reader + encodeURIComponent(feed.href));
    })();
    
    
  • Permalink
    このページへの個別リンクです。
    RAW
    書かれたコードへの直接のリンクです。
    Packed
    文字列が圧縮された書かれたコードへのリンクです。
    Userscript
    Greasemonkey 等で利用する場合の .user.js へのリンクです。
    Loader
    @require やソースコードが長い場合に多段ロードする Loader コミのコードへのリンクです。
    Metadata
    コード中にコメントで @xxx と書かれたメタデータの JSON です。

History

  1. 2017/02/20 04:10:27 - 2017-02-20
  2. 2017/02/20 04:05:27 - 2017-02-20
  3. 2017/02/20 04:03:29 - 2017-02-20
  4. 2017/02/20 04:00:01 - 2017-02-20
  5. 2014/09/30 03:42:54 - 2014-09-30
  6. 2014/09/30 03:38:04 - 2014-09-30