您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Remove ads and white spaces.
当前为
// ==UserScript== // @name CtgoFx // @author Itsuki // @version 271014 // @match http://*.chatango.com/* // @description Remove ads and white spaces. // @resource CSS https://github.com/Itsuki4/gmscripts/raw/master/chatango/style.css // @require http://code.jquery.com/jquery-2.1.1.min.js // @grant GM_getResourceText // @grant GM_addStyle // @namespace https://greasyfork.org/es/users/6316-itsuki // ==/UserScript== /**/ // Load style sheet var cssSrc = GM_getResourceText ("CSS"); GM_addStyle(cssSrc); function fcol() { // Firefox fix document.getElementsByTagName("col")[1].style.display = 'none'; document.getElementsByTagName("colgroup")[0].style.display = 'none'; document.getElementsByTagName("embed")[0].style.height = "100%"; document.getElementsByTagName("embed")[0].style.width = "100%"; } try { fcol(); } catch(err) {}