Twitter search feed
@@ -1,11 +1,15 @@
/*
- * @title Twitter Search
- * @description Search Twitter for selected text/present URL, then return Atom.
+ * @title Twitter search feed
+ * @description create Atom by search result on Twitter
* @include http://*
+ * @include https://*
+ * @contributor pmint http://let.hatelabo.jp/pmint/let/gYC-y5a00MSUTw
* @license MIT License
*/
+(function () {
+ var word = prompt('word?');
+ if (!word) return;
-var s = document.getSelection().toString();
-window.location='http://search.twitter.com/search.atom?q='
- + encodeURIComponent( s.length == 0 ? document.location.href.replace(/https?:\/\//, '') : s);
+ prompt('Copy Me', 'http://search.twitter.com/search.atom?q=' + encodeURIComponent(word));
+})();
/*
* @title Twitter search feed
* @description create Atom by search result on Twitter
* @include http://*
* @include https://*
* @contributor pmint http://let.hatelabo.jp/pmint/let/gYC-y5a00MSUTw
* @license MIT License
*/
(function () {
var word = prompt('word?');
if (!word) return;
prompt('Copy Me', 'http://search.twitter.com/search.atom?q=' + encodeURIComponent(word));
})();
- Permalink
- このページへの個別リンクです。
- RAW
- 書かれたコードへの直接のリンクです。
- Packed
- 文字列が圧縮された書かれたコードへのリンクです。
- Userscript
- Greasemonkey 等で利用する場合の .user.js へのリンクです。
- Loader
- @require やソースコードが長い場合に多段ロードする Loader コミのコードへのリンクです。
- Metadata
- コード中にコメントで @xxx と書かれたメタデータの JSON です。