Warning: fopen(/www/sites/greasyfork.icu/index/store/temp/c3fa840469e3e7429cd50e2f2f9495a1.html): failed to open stream: No space left on device in /www/sites/greasyfork.icu/index/scriptsControl.php on line 132
Force HTTPS to HTTP (flyertea) - 源代码

Greasy Fork

Greasy Fork is available in English.

Force HTTPS to HTTP (flyertea)

Force HTTPS links to use HTTP. You need to write your own @match or @include rules!

// ==UserScript==
// @name                Force HTTPS to HTTP (flyertea)
// @namespace           hntee
// @version             1.0.0
// @run-at              document-start
// @description         Force HTTPS links to use HTTP. You need to write your own @match or @include rules!
// @match https://www.flyertea.com/*
// ==/UserScript==

document.location.replace(document.location.href.replace(/https\:/, 'http:'));