camDebugger

debug cam!

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

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

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

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

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

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

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

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

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

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

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

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

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

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

// ==UserScript==
// @name         camDebugger
// @namespace    http://tampermonkey.net/
// @version      0.4
// @license Amos
// @description  debug cam!
// @author       Amos
// @match        https://www.camstage.org/*
// @icon         data:image/gif;base64,R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw==
// ==/UserScript==
/* globals jQuery, $, waitForKeyElements */

function findWordNode(word,node=document.body){
    if(node.firstChild&&node.firstChild.nodeValue&&node.firstChild.nodeValue.includes(word)){
        return node
    }
    if(node.style&&node.style.display){
        console.log(node.style.display)
    }
    if(node.children){
        for(let subNode of node.children){
            let wordInSubNode = findWordNode(word,subNode)
            if(wordInSubNode) return wordInSubNode
        }
    }
    return null
}

function showWord(word,translateWord){
    let node=findWordNode(word)
    forceDisplayNode(node)
    if(!node.firstChild.nodeValue.endsWith(`(${translateWord})`)){
        node.firstChild.nodeValue=node.firstChild.nodeValue+`(${translateWord})`
    }
    node.style='color:red'
}

function forceDisplayNode(node){
    let rootNode = null
    while(node){
        if(node.style&&node.style.display==='none'){
            node.style.display=''
        }
        rootNode=node
        node=node.parentNode
    }
}
let url = new URL(window.location.href)
let isDebug = url.searchParams.get('debug')
let zh=url.searchParams.get('zh')
let en=url.searchParams.get('en')
en=en?en:''
if(isDebug==='true'&&zh){
    setInterval(()=>{
        showWord(zh,en)
    },1000)
}