MCPcopy Create free account
hub / github.com/Bistutu/FluentRead / youtube

Function youtube

userscripts.js:1014–1020  ·  view source on GitHub ↗
(node, text)

Source from the content-addressed store, hash-verified

1012
1013// region 翻译兼容
1014function youtube(node, text) {
1015 // 替换 innerText
1016 let temp = document.createElement('span');
1017 temp.innerHTML = text;
1018 node.innerHTML = temp.innerText;
1019 return node.outerHTML;
1020}
1021
1022// endregion
1023

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected