Auto highlight all links

This script highlight all the links in a webpage autometically.

目前为 2024-09-19 提交的版本。查看 最新版本

// ==UserScript==
// @name         Auto highlight all links
// @namespace    https://lai-0602.com
// @version      2024-09-19
// @description  This script highlight all the links in a webpage autometically.
// @author       Lai0602
// @match        *
// @icon         https://external-content.duckduckgo.com/iu/?u=https%3A%2F%2Fwww.pinclipart.com%2Fpicdir%2Fbig%2F98-989061_svg-link-clip-art-royalty-free-download-link.png&f=1&nofb=1&ipt=f95be0256c6f1b15cba0ccd43dc54749c658d36b7646b21c26e800760ec22a08&ipo=images
// @grant        none
// @license      MIT
// ==/UserScript==

document.querySelectorAll('[href], [src]').forEach(tag => {
    tag.innerHTML = `<mark>${tag.textContent}</mark>`;
})