view nginx-https.user.js @ 140:b4bb74b34ae9

Rename
author nanaya <me@nanaya.net>
date Tue, 21 Jan 2025 21:47:33 +0900
parents 1e64e81370a3
children
line wrap: on
line source

// ==UserScript==
// @name        https nginx/freenginx
// @namespace   https://nanaya.net
// @match       http://freenginx.org/*
// @match       http://nginx.org/*
// @run-at      document-start
// @version     1.0.0
// @author      nanaya
// @description Redirect http to https for nginx
// @downloadURL https://hg.nanaya.net/ec-userscripts/raw-file/tip/nginx-https.user.js
// ==/UserScript==

'use strict';

window.location = window.location.href.replace('http://', 'https://');