CSFD.cz -> CSFD.sk Redirect

Redirects all csfd.cz pages to csfd.sk

当前为 2025-05-14 提交的版本,查看 最新版本

您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey 篡改猴Greasemonkey 油猴子Violentmonkey 暴力猴,才能安装此脚本。

您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey 篡改猴,才能安装此脚本。

您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey 篡改猴Violentmonkey 暴力猴,才能安装此脚本。

您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey 篡改猴Userscripts ,才能安装此脚本。

您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey 篡改猴,才能安装此脚本。

您需要先安装一款用户脚本管理器扩展后才能安装此脚本。

(我已经安装了用户脚本管理器,让我安装!)

您需要先安装一款用户样式管理器扩展,比如 Stylus,才能安装此样式。

您需要先安装一款用户样式管理器扩展,比如 Stylus,才能安装此样式。

您需要先安装一款用户样式管理器扩展,比如 Stylus,才能安装此样式。

您需要先安装一款用户样式管理器扩展后才能安装此样式。

您需要先安装一款用户样式管理器扩展后才能安装此样式。

您需要先安装一款用户样式管理器扩展后才能安装此样式。

(我已经安装了用户样式管理器,让我安装!)

// ==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);
})();