您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Toegang tot NU+ artikelen, zonder NU+.
// ==UserScript== // @name Accountloos NU+ // @namespace https://greasyfork.org/en/scripts/477279-accountloos-nu // @version 0.5 // @description Toegang tot NU+ artikelen, zonder NU+. // @author Confusified // @match https://www.nu.nl/* // @icon https://www.google.com/s2/favicons?sz=64&domain=nu.nl // @grant none // @license GNU GPLv3 // ==/UserScript== (function() { console.log("Accountloos NU+ wordt nu geladen."); const nuplusholder = document.querySelector("#main > article > figure > figcaption > h1 > span") if (nuplusholder) { document.querySelector("#main > article > div.login-wall").style.display = "none"; document.querySelector("#main > article > div.authorized-content").style.display = "block"; } else { console.log("NU+ artikel niet gevonden."); } console.log("NU+ artikel is geladen."); })();