您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Simple ad remover!
// ==UserScript== // @name Mind42.com no ads // @author Asim0 // @version 0.8 // @description Simple ad remover! // @include http://mind42.com* // @include https://mind42.com* // @grant GM_addStyle // @namespace https://greasyfork.org/users/180782 // ==/UserScript== var overrideCSS = " \ #sidebar { display: none; } \ #content.sidebar2 { margin-right: 0; } \ #topbar .logo .icon { background-position: -260px -60px; } \ #topbar .button.help .icon { background-position: -40px -20px; } \ #topbar { width: 400px; background: linear-gradient(to bottom, #ffffffa6 0%,#d0d4dbb0 100%); color: #8d939b; border: 1px solid #c9ced6; border-radius: 4px; } \ #statusbar { width: 320px; background: linear-gradient(to bottom, #ffffffa6 0%,#d0d4dbb0 100%);} \ #editmenu { margin: unset; position:absolute; right:0; top:0; } \ #birdview { top: 0px; right: 504px; background: linear-gradient(to bottom, #ffffffa6 0%,#d0d4dbb0 100%);} \ #canvas { background: white; } \ "; GM_addStyle(overrideCSS);