Subscribe Gists
by
noromanba
2012-03-12 [2012/03/12 01:34:51]
Subscribe Public Gists (Atom).
@@ -2,31 +2,24 @@
* @title Subscribe Gists
* @description Subscribe Public Gists (Atom).
* @include https://gist.github.com/*
- * @license MIT License http://noromanba.mit-license.org/2012+
+ * @license MIT License http://nrm.mit-license.org/2012+
* @see https://support.google.com/chrome/bin/answer.py?hl=ja&answer=1342714
* @require
*/
-
-// [ATTENTION]
-// This bookmarklet must be running on mixed scripting environment
-// because callee server is use HTTP on 'http://hatelabo.jp'.
-// Open 'Packed'link -> add prefix 'javascript' before use.
-
// first jQuery experience(by guesswork)
+
(function($){
var owner;
if (/^https:\/\/gist\.github\.com\/\d+/.test(location.href) && $('#owner .name a').length) {
owner = $('#owner .name a').text();
- console.info('::Let:: ' + 'owner: ' + owner);
} else if (/^https:\/\/gist\.github\.com\/(\w+)/.test(location.href)) {
owner = RegExp.$1;
- console.info('::Let:: ' + 'owner: ' + owner);
}
+ //console.info('*owner: ' + owner);
if (owner) {
- var feed = 'https://gist.github.com/' + owner + '.atom';
var reader = 'http://google.com/reader/view/feed/';
- location.href = reader + encodeURIComponent(feed);
+ location.href = reader + encodeURIComponent('https://gist.github.com/' + owner + '.atom');
}
-})(jQuery); void(0);
+})(jQuery);
/*
* @title Subscribe Gists
* @description Subscribe Public Gists (Atom).
* @include https://gist.github.com/*
* @license MIT License http://nrm.mit-license.org/2012+
* @see https://support.google.com/chrome/bin/answer.py?hl=ja&answer=1342714
* @require
*/
// first jQuery experience(by guesswork)
(function($){
var owner;
if (/^https:\/\/gist\.github\.com\/\d+/.test(location.href) && $('#owner .name a').length) {
owner = $('#owner .name a').text();
} else if (/^https:\/\/gist\.github\.com\/(\w+)/.test(location.href)) {
owner = RegExp.$1;
}
//console.info('*owner: ' + owner);
if (owner) {
var reader = 'http://google.com/reader/view/feed/';
location.href = reader + encodeURIComponent('https://gist.github.com/' + owner + '.atom');
}
})(jQuery);
- Permalink
- このページへの個別リンクです。
- RAW
- 書かれたコードへの直接のリンクです。
- Packed
- 文字列が圧縮された書かれたコードへのリンクです。
- Userscript
- Greasemonkey 等で利用する場合の .user.js へのリンクです。
- Loader
- @require やソースコードが長い場合に多段ロードする Loader コミのコードへのリンクです。
- Metadata
- コード中にコメントで @xxx と書かれたメタデータの JSON です。