您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Makes the date + time sliders taller on all met office weather maps, and stops the green box + arrow from blocking drag events. Especially useful on mobile.
// ==UserScript== // @name Large sliders for Met Office Weather Maps // @namespace https://www.github.com/sjain882 // @author sjain882 / shanie // @match *://weather.metoffice.gov.uk/maps-and-charts/* // @grant GM_addStyle // @version 0.1.0 // @icon https://www.google.com/s2/favicons?sz=64&domain=metoffice.gov.uk // @description Makes the date + time sliders taller on all met office weather maps, and stops the green box + arrow from blocking drag events. Especially useful on mobile. // @homepageURL https://www.github.com/sjain882/Browser-Tweaks // @supportURL https://www.github.com/sjain882/Browser-Tweaks/issues // @license MIT // ==/UserScript== GM_addStyle(".ms-slide { min-height: 72px !important; }"); GM_addStyle("#lower-controls > div > span { top: 80px !important; pointer-events: none !important }");