+Feedly
@@ -3,18 +3,23 @@
* @description subscribe to feed in Feedly
* @include http://*
* @include https://*
- * @license MIT License http://opensource.org/licenses/MIT
+ * @contributor noromanba http://let.hatelabo.jp/noromanba/let/gYC-x-_E8PL0OA
+ * @license MIT License http://opensource.org/licenses/MIT
* @javascript_url
*/
-(function () {
- var query = [
- 'link[href][rel=alternate][type^="application/atom"]',
- 'link[href][rel=alternate][type^="application/rss"]'
- ].join(',');
- var feed = document.querySelector(query);
+(() => {
+ 'use strict';
+
+ const feed = document.querySelector([
+ 'link[href][rel=alternate][type^="application/atom"]',
+ 'link[href][rel=alternate][type^="application/rss"]',
+ ]);
if (!feed) return;
- var reader = 'https://www.feedly.com/home#subscription/feed/';
- location.href = reader + encodeURIComponent(feed.href);
+ // 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));
})();
+
/*
* @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 です。