Created
January 5, 2015 11:46
-
-
Save youcune/f5528ff02923bd319ed9 to your computer and use it in GitHub Desktop.
「グノシーは3分で読める」とか出てくる邪魔なページをスキップできる Greasemonkey ユーザスクリプト
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 goodbye-gunosy | |
// @namespace jp.youcube | |
// @include http://gunosy.com/* | |
// @version 1 | |
// @grant none | |
// ==/UserScript== | |
$(function(){ | |
location.href = $('.articles-show-click').attr('href'); | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment