Skip to content

Instantly share code, notes, and snippets.

@t-ashula
Created October 28, 2013 05:03
Show Gist options
  • Save t-ashula/7191666 to your computer and use it in GitHub Desktop.
Save t-ashula/7191666 to your computer and use it in GitHub Desktop.
中間ページとばす
// ==UserScript==
// @name g
// @namespace http://ashula.info
// @description gunosy.com/g
// @include http://gunosy.com/g/*
// ==/UserScript==
(function() {
// articles-show-click
window.addEventListener('DOMContentLoaded', function(){
var a = document.querySelector('a.articles-show-click');
if(!a){
return;
}
window.location = a.href;
}, false);
})();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment