Highlights links on any website.
// ==UserScript==
// @name Simple Page Highlighter
// @namespace https://greasyfork.org/
// @version 1.0
// @description Highlights links on any website.
// @match *://*/*
// @grant none
// ==/UserScript==
(function () {
'use strict';
document.querySelectorAll('a').forEach(link => {
link.style.background = '#fff3a3';
link.style.padding = '2px';
link.style.borderRadius = '3px';
});
})();