Created
July 28, 2010 19:07
-
-
Save awef/495862 to your computer and use it in GitHub Desktop.
ascii.jp-skip-summry.html.user.js
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// ==UserScript== | |
// @name ascii.jp-skip-summry.html | |
// @description フィードリーダーから飛んだ時に出る、asciiのsummary.htmlを飛ばす | |
// @match http://ascii.jp/* | |
// @run-at document-start | |
// ==/UserScript== | |
var x = /^(http:\/\/ascii\.jp\/elem\/(?:\d+\/)+)summary\.html\?rss$/.exec(location.href); | |
if(x){ | |
location.href = x[1]; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment