redirects you from http://www.bom.gov.au to https://reg.bom.gov.au
اعتبارا من
// ==UserScript==
// @name bom https
// @namespace Violentmonkey Scripts
// @match http://www.bom.gov.au/*
// @grant none
// @license MIT
// @version 1.3
// @author forkbombsh
// @description redirects you from http://www.bom.gov.au to https://reg.bom.gov.au
// ==/UserScript==
if (window.location.href.startsWith("http://www.bom.gov.au/")) {
window.location.replace(`https://reg.bom.gov.au${window.location.pathname}`);
}