您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Redirects all csfd.cz pages to csfd.sk
// ==UserScript== // @name CSFD.cz -> CSFD.sk Redirect // @namespace http://tampermonkey.net/ // @license MIT // @version 1.0 // @description Redirects all csfd.cz pages to csfd.sk // @author pystik // @match *://*.csfd.cz/* // @grant none // ==/UserScript== (function() { 'use strict'; // Get current host parts const hostParts = window.location.hostname.split('.'); // Replace Czech TLD with Slovak TLD hostParts[hostParts.length - 1] = 'sk'; const newHost = hostParts.join('.'); // Preserve path and parameters const newURL = window.location.protocol + '//' + newHost + window.location.pathname + window.location.search + window.location.hash; // Perform redirect window.location.replace(newURL); })();