返回首頁 

Greasy Fork is available in English.

MetaGer (No-ads)

Hide ads from MetaGer.

// ==UserScript==// @name         MetaGer (No-ads)// @namespace    https://greasyfork.org/users/592063// @icon         https://icons.duckduckgo.com/ip2/metager.org.ico// @version      0.1.1// @description  Hide ads from MetaGer.// @author       wuniversales// @match        http*://metager.org/*// @match        http*://metager.es/*// @match        http*://metager.de/*// @run-at       document-end// @grant        none// ==/UserScript==(function() {'use strict';async function addGlobalStyle(css) {var head, style;head = document.getElementsByTagName('head')[0];if (!head) { return; }style = document.createElement('style');style.type = 'text/css';style.innerHTML = css.replace(/;/g, ' !important;');head.appendChild(style);}addGlobalStyle("div.ad{display:none;}");})();