您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
try to save your eyes
// ==UserScript== // @name 屏蔽Linda // @namespace http://tampermonkey.net/ // @version 2.0 // @description try to save your eyes // @author SoftwareSing // @match https://r4-museum.acgn-stock.com/* // @grant none // ==/UserScript== function findImgUrls() { const companyData = Meteor.connection._mongo_livedata_collections.companies.find("RvFQeL7eERB84h85z").fetch(); if (companyData && companyData.length > 0) { const { pictureSmall, pictureBig } = companyData[0]; return [ pictureSmall, pictureBig ]; } return []; } function shield() { const urls = findImgUrls(); urls.forEach((url) => { if (! url) { return; } const lindaImg = $(`img[src="${url}"]`); if (lindaImg.length > 0) { lindaImg[0].src = "https://i.imgur.com/N1qXujc.jpg"; } }) } setTimeout(() => { shield(); Template.companyListCard.onRendered(() => { shield(); }); Template.companyDetailTable.onRendered(() => { shield(); }); }, 1000);