Last active
November 28, 2015 03:03
-
-
Save gifnksm/cc0ae271dab4b31036d1 to your computer and use it in GitHub Desktop.
This file contains 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 gunosy redirect | |
// @namespace gifnksm.hatenablog.jp | |
// @include https://gunosy.com/articles/* | |
// @version 1.0.2 | |
// @grant none | |
// @downloadURL https://gist.github.com/gifnksm/cc0ae271dab4b31036d1/raw/gunosy_redirect.user.js | |
// @author NAKASHIMA, Makoto <[email protected]> | |
// ==/UserScript== | |
let links = Array.filter(document.querySelectorAll(".article_main > .article_media a"), | |
elem => elem.textContent === "元記事を読む"); | |
for (let link of links) { | |
location.href = link.href; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment