+Feedly

  • /*
     * @title +Feedly
     * @description subscribe to feed in Feedly
     * @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;
    
        // c.f. "If you have the feeds' URL"
        // https://feedly.uservoice.com/knowledgebase/articles/187494-how-to-add-news-feeds-to-your-feedly
        const reader = 'https://feedly.com/i/subscription/feed/';
        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:23:22 - 2017-02-20
  2. 2014/09/30 03:52:28 - 2014-09-30
  3. 2013/07/06 03:01:19 - 2013-07-06
  4. 2013/07/01 06:55:33 - 2013-07-01
  5. 2013/07/01 06:49:39 - 2013-07-01