Jump to content

User:Jmcgnh/no-edit-non-user-redlink.js

From Wikipedia, the free encyclopedia
This is the current revision of this page, as edited by Jmcgnh (talk | contribs) at 22:26, 23 June 2024 (Add back part of Matma Rex suggestion Special:Diff/1174844956 - I don't yet understand the rest of the differences). The present address (URL) is a permanent link to this version.
(diff) ← Previous revision | Latest revision (diff) | Newer revision → (diff)
Note: After saving, you have to bypass your browser's cache to see the changes. Google Chrome, Firefox, Microsoft Edge and Safari: Hold down the ⇧ Shift key and click the Reload toolbar button. For details and instructions about other browsers, see Wikipedia:Bypass your cache.
// @namespace    YourUserName
// @version      1.1
// @description  Removes the action=edit parameter from red links (excluding User: namespace)
// @match        https://en.wikipedia.org/*
// @grant        none
// created using Microsoft CoPilot seeded with User:Awesome Aasim/noeditredlinks.js
// ==/UserScript==

(function() {
    'use strict';

    // Get all red links
    const redLinks = document.querySelectorAll('a.new, new a');

    // Remove the action=edit parameter (excluding User: namespace)
    redLinks.forEach(link => {
        if (!link.href.includes('title=User:')) {
            link.href = link.href.replace(/&action=edit/g, '');
        }
    });
})();