您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Softpedia Minimalist - http://pushka.com/coding-donation
当前为
// ==UserScript== // @name Softpedia Minimalist // @namespace english // @description Softpedia Minimalist - http://pushka.com/coding-donation // @include http*://*softpedia.com* // @version 1.2 // @run-at document-start // @grant GM_addStyle // ==/UserScript== // Main - CSS hides two classes - video add box, and call to action box under it. - also social media var text2 = ""; if((document.URL()== "http://www.softpedia.com/")||(document.URL()== "http://softpedia.com/")||(document.URL()== "http://www.softpedia.com")||(document.URL()== "http://softpedia.com")||(document.URL()== "https://softpedia.com")||(document.URL()== "https://www.softpedia.com")){ text2 = ".container_48{display:none;}";} var style = document.createElement('style'); style.type = 'text/css'; style.innerHTML = text2+' #flashsale,.copyright_cnt,.social{display: none;}/*\n*//*\n*//*We work hard every day to bring you the latest software & games, tech news and reviews.If our site is useful to you, please consider whitelisting us in your ad blocker.*//*\n*/.grid_17, .mgtop_10, .mgbot_40 {display: none;}/*\n*//*\n*//*Did you know that.... ...has been downloaded 70,180 times so far?*//*\n*/.grid_29, .prefix_2, .mgtop_30 {display: none;} '; document.getElementsByTagName('head')[0].appendChild(style);