您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
15/02/2023, 20:13:58
当前为
// ==UserScript== // @name yomichan lookup history // @namespace Violentmonkey Scripts // @match *://*/* // @grant GM_getValue // @grant GM_setValue // @grant GM_deleteValue // @version 7.0 // @license MIT // @author grumpythomas // @description 15/02/2023, 20:13:58 // ==/UserScript== const dbKey = 'yomichan-lookup-history'; const timezone = Intl.DateTimeFormat().resolvedOptions().timeZone; const maxTextSize = 24; (function () { const host = window.location.host; if (host.indexOf('localhost') > -1 || host.indexOf('therealgrumpythomas') > -1) { let hydrateInterval = window.setInterval(() => { if (unsafeWindow.hydrate) { unsafeWindow.hydrate(getData()); unsafeWindow.clearInterval(hydrateInterval); } }, 100); } window.addEventListener('message', function(e) { if (e.data === 'resetYomichanHistory') { GM_deleteValue(dbKey); } if (e.data === 'optimizeYomichanHistory') { data = getData(); data.lookups = data.lookups.reduce((acc, lookup) => { if (lookup.text.length > maxTextSize) { return acc; } acc.push(lookup); return acc; }, []); setData(data); } if (e.data.indexOf('normalizeYomichanHistory') > -1) { const match = e.data.match(/--(.*)--\+\+(.*)\+\+/); if (match.length === 3) { const before = match[1]; const after = match[2]; data = getData(); data.lookups = data.lookups.reduce((acc, lookup) => { if (lookup.text === before) { lookup.text = after; } acc.push(lookup); return acc; }, []); setData(data); } } if (e.data.indexOf('deleteYomichanHistoryItem') > -1) { let [_e, ...textToDelete] = e.data.split(':'); textToDelete = textToDelete.join(':').trim(); data = getData(); data.lookups = data.lookups.reduce((acc, lookup) => { if (lookup.text !== textToDelete) { acc.push(lookup); } return acc; }, []); setData(data); } }); document.addEventListener('selectionchange', debounce(() => { if (!window.getSelection) { return; } const selectedText = window.getSelection()?.toString()?.trim(); if (!selectedText?.length) { return; } if (window.location.href.toLowerCase().indexOf('grumpythomas') > -1) { return; } insertRow(selectedText, document.title); }, 600)); })(); function initData() { return { created: Date.now(), lookups: [], sources: [] }; } function getData() { let rawData; try { rawData = GM_getValue(dbKey); } catch { return; } if (!rawData) { return; } rawData.sources = rawData.sources || []; return JSON.parse(rawData); } function insertRow(lookup, source) { const data = getData() || initData(); if (lookup.length > maxTextSize) { return; } const dbLookup = { text: lookup, created: Date.now(), timezone }; let dbSourceId = data.sources.findIndex(s => s.label === source); if (dbSourceId === -1) { dbSourceId = data.sources.push({ label: source }) } dbLookup.sourceId = dbSourceId; data.lookups.push(dbLookup); setData(data); return data; } function setData(data) { GM_setValue(dbKey, JSON.stringify(data)); } function debounce(func, timeout) { let timer; return (...args) => { clearTimeout(timer); timer = setTimeout(() => { func.apply(this, args); }, timeout); }; }