您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
changes color of the text within quotes
- // ==UserScript==
- // @name Color Style - quotes
- // @namespace An CSS user script
- // @match http://127.0.0.1:8000/*
- // @match https://beta.character.ai/chat*
- // @grant none
- // @license MIT
- // @version 1.1
- // @author chatgpt
- // @description changes color of the text within quotes
- // @run-at document-end
- // ==/UserScript==
- function changeColors() {
- const pTags = document.getElementsByTagName('p');
- let changed = false;
- for (let i = 0; i < pTags.length; i++) {
- const pTag = pTags[i];
- if (pTag.dataset.colorChanged === 'true') {
- continue;
- }
- let text = pTag.innerHTML;
- if (text.match(/(["“”«»].*?["“”«»])/)) {
- text = text.replace(/(["“”«»].*?["“”«»])/g, '<span style="color: #00FF00">$1</span>');
- pTag.innerHTML = text;
- pTag.dataset.colorChanged = 'true';
- changed = true;
- }
- }
- if (changed) {
- console.log('Changed quote colors!');
- }
- }
- setTimeout(function() {
- changeColors();
- setInterval(changeColors, 500); // check every 500 milliseconds
- }, 2000); // 2 seconds delay