NOTICE: By continued use of this site you understand and agree to the binding Terms of Service and Privacy Policy.
// ==UserScript== // @name DHMZ default location (Pre-Alpha) // @namespace http://tampermonkey.net/ // @version 0.0.5 // @description Use a specific city as default and change page title // @author A.S. // @match https://meteo.hr/prognoze.php?* // @icon https://www.google.com/s2/favicons?sz=64&domain=meteo.hr // @grant none // @run-at document-end // @license MIT // @updateURL https://openuserjs.org/meta/alesko/DHMZ_default_location_(Pre-Alpha).meta.js // @downloadURL https://openuserjs.org/install/alesko/DHMZ_default_location_(Pre-Alpha).user.js // @copyright 2022, A.S. // ==/UserScript== (function() { 'use strict'; var cityCode = "Osijek"; var customTitle = "Weather Forecast - Osijek"; // Custom title you want // Check if we need to redirect if (window.location.href === "https://meteo.hr/prognoze.php?section=prognoze_model¶m=3d") { var newURL = "https://meteo.hr/prognoze.php?Code=" + cityCode + "&id=prognoza§ion=prognoze_model¶m=3d"; location.replace(newURL); } // If already on a forecast page, change the title else if (window.location.href.includes("meteo.hr/prognoze.php")) { document.title = customTitle; } })();