您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
将x岛的用户饼干替换为颜文字符号
/** @format */ // ==UserScript== // @name 替换x岛饼干为颜文字符号 // @namespace https://github.com/jerrywcy/cookie-kaomojinize // @version 1.0.0 // @description 将x岛的用户饼干替换为颜文字符号 // @author jerrywcy // @license MIT // @match https://www.nmbxd1.com/* // @icon https://www.nmbxd1.com/favicon.ico // @grant none // ==/UserScript== const dict = [ "|", "(", "´", "Д", "∀", "゚", "`", ")", ";", "'", "・", "ω", "=", "-", "ー", "つ", "д", "⊂", "≡", "o", "ノ", "*", "∇", "・", "_", "ゝ", "〃", "ε", "?", "!", "ヮ", "σ", "ノ", "╬", "Σ", "☉", "⊙", ">", "<", "T", " ̄", "3", "@", "#", "~", "$", "%", "ヾ", "&", "ρ", "^", "。", "◕", "ゥ", "π", "彡", "☆", "\u3000", "ᑒ", "ฅ", "ˇ", "¥", ]; function id(c) { let id = c.charCodeAt(0); if (id >= 48 && id <= 57) { id = id - 48; } else if (id >= 65 && id <= 90) { id = id - 65 + 10; } else if (id >= 97 && id <= 122) { id = id - 97 + 36; } else { console.log(`${c} is not a number or a character!`); throw Error; } return id; } function generate(text) { let ret = ""; for (let c of text) { try { ret += dict[id(c)]; } catch (error) { console.log(`Error occured when handling cookie ${text}`); throw error; } } return ret; } function main() { const uids = document.getElementsByClassName("h-threads-info-uid"); for (let uid of uids) { if (uid.textContent != null && uid.innerHTML == uid.textContent) { uid.textContent = `ID:${generate(uid.textContent.substring(3))}`; } } } (function () { "use strict"; try { main(); } catch (_error) { //Let's pretend nothing happens } })();