Skip to content

Instantly share code, notes, and snippets.

@awef
Created July 28, 2010 19:07
Show Gist options
  • Save awef/495862 to your computer and use it in GitHub Desktop.
Save awef/495862 to your computer and use it in GitHub Desktop.
ascii.jp-skip-summry.html.user.js
// ==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