Jump to content

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

From Wikipedia, the free encyclopedia
The printable version is no longer supported and may have rendering errors. Please update your browser bookmarks and please use the default browser print function instead.
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, '');
        }
    });
})();