Created
October 28, 2013 05:03
-
-
Save t-ashula/7191666 to your computer and use it in GitHub Desktop.
中間ページとばす
This file contains hidden or 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 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