Greasy Fork is available in English.
自動的に全文にする
当前为
// ==UserScript==
// @name 自動的に全文にする ITmeida
// @namespace http://greasyfork.icu/ja/users/6866-ppppq
// @version 0.3.20190123
// @description 自動的に全文にする
// @author You
// @match http://*.itmedia.co.jp/*/spv/*
// @grant none
// @run-at document-start
// ==/UserScript==
(function() {
'use strict';
var loc = document.location;
var url = new URL(loc.href);
if (url.pathname.includes('_0.html')) {
url.pathname = url.pathname.replace('_0.html', '.html');
loc.replace(url.href);
}
})();