Twivia
by
noromanba
2012-12-31 [2012/12/31 02:12:51]
show tweeted client on Twitter
@@ -1,28 +1,31 @@
/*
- * @title Twitter via
+ * @title Twivia
* @description show tweeted client on Twitter
- * @include http://twitter*
+ * @include http://twitter.com/*
* @license MIT License http://nrm.mit-license.org/2012
* @require
- * @private
*/
(function(){
- if (!jQuery) return;
+ var id;
+ if (!(id = (/https?:\/\/twitter\.com\/[\w-]+\/status\/(\d+)/.exec(location.href) || [])[1]) ||
+ !jQuery) {
+ return;
+ }
jQuery.ajax({
type: 'GET',
url: 'https://api.twitter.com/1/statuses/show.json?callback=?',
dataType: 'jsonp',
data: {
- id: location.pathname.split('/').pop()
+ id: id //location.pathname.split('/').pop()
}
}).
done(function (res) {
var parent;
if (!(parent = document.querySelector('.metadata'))) return;
- parent.appendChild(document.createTextNode('via '));
+ parent.appendChild(document.createTextNode(' · via '));
var container = document.createElement('span');
container.innerHTML = res.source;
/*
* @title Twivia
* @description show tweeted client on Twitter
* @include http://twitter.com/*
* @license MIT License http://nrm.mit-license.org/2012
* @require
*/
(function(){
var id;
if (!(id = (/https?:\/\/twitter\.com\/[\w-]+\/status\/(\d+)/.exec(location.href) || [])[1]) ||
!jQuery) {
return;
}
jQuery.ajax({
type: 'GET',
url: 'https://api.twitter.com/1/statuses/show.json?callback=?',
dataType: 'jsonp',
data: {
id: id //location.pathname.split('/').pop()
}
}).
done(function (res) {
var parent;
if (!(parent = document.querySelector('.metadata'))) return;
parent.appendChild(document.createTextNode(' · via '));
var container = document.createElement('span');
container.innerHTML = res.source;
parent.appendChild(container);
});
})();
- Permalink
- このページへの個別リンクです。
- RAW
- 書かれたコードへの直接のリンクです。
- Packed
- 文字列が圧縮された書かれたコードへのリンクです。
- Userscript
- Greasemonkey 等で利用する場合の .user.js へのリンクです。
- Loader
- @require やソースコードが長い場合に多段ロードする Loader コミのコードへのリンクです。
- Metadata
- コード中にコメントで @xxx と書かれたメタデータの JSON です。