Greasy Fork is available in English.

RandomNerdTutorials Free Ebooks -> Insider

Make the 'Free Ebooks' Menu Item go over the signup page directly to the Insider Page

このスクリプトの質問や評価の投稿はこちら通報はこちらへお寄せください。
// ==UserScript==
// @name         RandomNerdTutorials Free Ebooks -> Insider
// @namespace    http://tampermonkey.net/
// @version      2024-02-24
// @description  Make the 'Free Ebooks' Menu Item go over the signup page directly to the Insider Page
// @author       @BenjaminDerProgrammierer
// @match        https://randomnerdtutorials.com/*
// @icon         https://www.google.com/s2/favicons?sz=64&domain=randomnerdtutorials.com
// @grant        none
// @license MIT
// ==/UserScript==

(function() {
    document.getElementById('menu-item-20487').childNodes[0].href = 'https://randomnerdtutorials.com/insider/';
     document.getElementById('menu-item-20487').childNodes[0].innerText = 'Insider Area - Free eBooks';
})();