您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Adds a counter to the page title on Flightradar24 to show the number of matched flights
// ==UserScript== // @name Flightradar24 show flights in title // @description Adds a counter to the page title on Flightradar24 to show the number of matched flights // @author Raphael Cockx // @version 0.1.0 // @namespace http://www.flightradar24.com // @match http://www.flightradar24.com/* // ==/UserScript== setInterval(function(){ var flights = document.getElementById('menuPlanesValue').innerHTML.split(' / ')[0]; if (flights.substring(0, 1) == '0') flights = '0'; document.title = '['+flights+'] Flightradar24.com - Live flight tracker!'; },5000);