Post Twitter Hack
by
eban
2012-06-04 [2012/06/04 10:22:41]
twitterのポストURLから/homeを削除
@@ -1,15 +1,13 @@
/*
* @title twitter fix
- * @description /homeを削除
+ * @description twitterのポストURLから/homeを削除
* @include http://*
* @license MIT License
* @private
*/
-var link,l=0;
-while(link=document.links[l++]) {
- if (link.href.toLowerCase().indexOf('.pdf')!=-1&&link.href.indexOf('javascript')==-1&&link.href.indexOf('file:')==-1){
- var newString='http://docs.google.com/viewer?url='+link.href;link.href=newString;
- }
-};
-void(null);
+var link, l=0;
+while (link = document.links[l++]) {
+ link.href.replace(/twitter\.com\/home\?/, "twitter.com/?");
+}
+
/*
* @title twitter fix
* @description twitterのポストURLから/homeを削除
* @include http://*
* @license MIT License
* @private
*/
var link, l=0;
while (link = document.links[l++]) {
link.href.replace(/twitter\.com\/home\?/, "twitter.com/?");
}
- Permalink
- このページへの個別リンクです。
- RAW
- 書かれたコードへの直接のリンクです。
- Packed
- 文字列が圧縮された書かれたコードへのリンクです。
- Userscript
- Greasemonkey 等で利用する場合の .user.js へのリンクです。
- Loader
- @require やソースコードが長い場合に多段ロードする Loader コミのコードへのリンクです。
- Metadata
- コード中にコメントで @xxx と書かれたメタデータの JSON です。