您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Entfernt das Overlay, was einen zwingen will sich anzumelden. Ermöglicht es die Artikel ohne Anmeldung zu lesen.
// ==UserScript== // @name www.volksfreund.de: Anmelde-Wall entfernen // @description Entfernt das Overlay, was einen zwingen will sich anzumelden. Ermöglicht es die Artikel ohne Anmeldung zu lesen. // @namespace https://greasyfork.org/de/users/571550-finomosec // @version 0.1 // @author Finomosec // @match https://www.volksfreund.de/* // @grant none // @locale de // @license GPLv2 // @noframes // ==/UserScript== var style = document.createElement('style'); style.innerHTML = ` .text, .text_ohne_einzug { color: black; } html, body { overflow: auto !important; } #osc-paywall-frame, #park-webtrekk-paywall-hook { display: none !important; } `; document.head.appendChild(style); console.log('added style');