Greasy Fork is available in English.

5ch redirect https

5ch で https じゃないときにリダイレクトするだけ(2020年末には同じ目的で https-everywhere が対応したようなのでそれを推奨します)

このスクリプトの質問や評価の投稿はこちら通報はこちらへお寄せください。
// ==UserScript==
// @name         5ch redirect https
// @namespace    http://tampermonkey.net/
// @version      1.2
// @description  5ch で https じゃないときにリダイレクトするだけ(2020年末には同じ目的で https-everywhere が対応したようなのでそれを推奨します)
// @author       scri P
// @match        http://*.5ch.net/test/read.cgi/*
// @grant        none
// ==/UserScript==

(function() {
    location.href = "https://" + location.href.split("http://")[1];
})();