造訪 hochi.news
// ==UserScript==
// @name Hochi News
// @namespace http://tampermonkey.net/
// @version 1.0
// @description 造訪 hochi.news
// @match https://hochi.news/articles/*.html
// @grant none
// @run-at document-start
// @license MIT
// ==/UserScript==
(function() {
'use strict';
location.replace(location.pathname + '?page=1');
})();