您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
earthquake!
// ==UserScript== // @name crow thurification // @namespace https://blog.krahsu.top/ // @version 0.1 // @description earthquake! // @author hiacia // @match https://*/* // @icon https://cdn.krahsu.top/pic/blog202302030251122.png // @grant none // @license MIT // ==/UserScript== (function() { 'use strict'; const crow = document.createElement("img"); crow.innerHTML = '<img src="https://i2.hdslb.com/bfs/face/f30b0c87d50422f9446ffa1040e822b19f013f97.jpg@240w_240h_1c_1s.webp" alt="crow.png"/>' document.querySelectorAll('a,span').forEach( e=>{ e.addEventListener('click',(event)=>{ event.preventDefault(); e.innerHTML = '<img src="https://i2.hdslb.com/bfs/face/f30b0c87d50422f9446ffa1040e822b19f013f97.jpg@240w_240h_1c_1s.webp" alt="crow.png"/>'; });}) })();