← all scripts

Green Links

by anonymous · v1 · 7 installs · published 2026-07-23 00:35:07

Make links green on Google search results

Install green-links-8f2410.user.js Edit Runs on: https://www.google.com/search*

Opens in your userscript manager — Userscripts for Safari, Tampermonkey, or Violentmonkey. Check the scan verdicts below before you run code you didn't write.

Community scan verdicts

No published scans yet for v1. Run one with your own model and publish the first verdict.

Source (v1)

// ==UserScript==
// @name         Green Links
// @description  Make links green on Google search results
// @version      1.0.0
// @match        https://www.google.com/search*
// ==/UserScript==

(function() {
    'use strict';
    var links = document.querySelectorAll('a');
    links.forEach(function(link) {
        link.style.color = 'green';
    });
})();