您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Greasy Fork is available in English.
Corrections to UI of marinetraffic.com
// ==UserScript== // @name CSS: marinetraffic.com // @description Corrections to UI of marinetraffic.com // @author MK // @namespace max44 // @homepage https://greasyfork.runtimutd.eu.org/en/users/309172-max44 // @match *://*.marinetraffic.com/* // @icon https://www.marinetraffic.com/favicon_n.ico // @version 1.2 // @license MIT // ==/UserScript== (function() { var css = ` #skyscraper_container_front, .top-banner { display: none !important; } .MuiGrid-root.MuiGrid-item > .MuiGrid-root.MuiGrid-container > .MuiGrid-root.MuiGrid-item > .MuiStack-root { padding: 0px !important; } .smartbanner-android, #app .MuiContainer-root > .MuiGrid-root.MuiGrid-container > .MuiGrid-root.MuiGrid-item > .MuiGrid-root.MuiGrid-container > .MuiGrid-root.MuiGrid-item > .MuiStack-root { display: none !important; } `; if (typeof GM_addStyle != 'undefined') { GM_addStyle(css); } else if (typeof PRO_addStyle != 'undefined') { PRO_addStyle(css); } else if (typeof addStyle != 'undefined') { addStyle(css); } else { var node = document.createElement('style'); node.type = 'text/css'; node.appendChild(document.createTextNode(css)); document.documentElement.appendChild(node); } })();