wwc7654321 / restrict cc pages

// ==UserScript==
// @name         restrict cc pages
// @namespace    http://tampermonkey.net/
// @version      0.1
// @description  restrict CC pages to forbid auto jump, edit the script if you want to see more rooms
// @author       wwc7654321
// @match        https://cc.163.com/*
// @icon         https://www.google.com/s2/favicons?domain=cc.163.com
// @license      MIT
// @grant        none
// ==/UserScript==

(function() {
    'use strict';
    if(window.location!="https://cc.163.com/361433/" &&
       window.location!="https://cc.163.com/239802416/" &&
       /* ... */
       window.location!="https://cc.163.com")
    {
        if(window.location.href.search(/.com\/\d+\/?$/i)>=0||window.location.href.search(/.com\/\d+\/\d+\/?$/i)>=0)
            window.location="https://cc.163.com/361433/";
    }
    // Your code here...
})();