Skip to content

Instantly share code, notes, and snippets.

@youcune
Created January 5, 2015 11:46
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save youcune/f5528ff02923bd319ed9 to your computer and use it in GitHub Desktop.
Save youcune/f5528ff02923bd319ed9 to your computer and use it in GitHub Desktop.
「グノシーは3分で読める」とか出てくる邪魔なページをスキップできる Greasemonkey ユーザスクリプト
// ==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