// ==UserScript== // @name 技術評論社(gihyo.jp)のサマリーページを飛ばして本文を開く // @namespace http://tampermonkey.net/ // @version 0.1 // @description 技術評論社(gihyo.jp)のサマリーページを飛ばして本文を開きます。 // @author Jakarta Read-only Brothers // @match https://gihyo.jp/*?summary // @icon https://www.google.com/s2/favicons?sz=64&domain=gihyo.jp // @grant none // @run-at document-start // @downloadURL none // ==/UserScript== (function() { const url = new URL(location.href); url.search = ""; location.replace(url); })();