您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Shows the current °F and °C weather temperature at the same time on google.
当前为
// ==UserScript== // @name °F+°C Weather - google // @namespace https://gf.qytechs.cn/en/users/670188-hacker09?sort=daily_installs // @version 6 // @description Shows the current °F and °C weather temperature at the same time on google. // @author hacker09 // @include *://www.google.* // @icon https://t3.gstatic.com/faviconV2?client=SOCIAL&type=FAVICON&fallback_opts=TYPE,SIZE,URL&url=http://www.google.com&size=64 // @run-at document-end // @grant none // @noframes // ==/UserScript== (function() { 'use strict'; var CorF; //Create a global variable if (document.querySelector("div.vk_bk.wob-unit > span,div.wob_uctr > span").innerText === '°F') //If the current temperature is in °F { //Starts the if condition CorF = '°F'; //Page was loaded in °F } //Finishes the if condition async function ShowCF() { var c = document.getElementById('wob_tm').innerText; //Save the current temperature value var f = document.getElementById('wob_ttm').innerText; //Save the hidden temperature value document.querySelector("div.wob_tctr").style.display = 'none'; //Hide the big text temperature document.querySelector("div.wob_uctr").style.fontSize = '47px'; //Increase the script custom text font size document.querySelectorAll("div.wob_uctr > span").forEach(el => el.style.color = 'white'); //Make the script temperature white if (CorF === '°F') //If the current temperature is in °F { //Starts the if condition document.querySelectorAll("div.wob_uctr > .wob_t:nth-child(1),div.wob_uctr > .wob_t:nth-child(2)").forEach(el => el.innerText = c + '°F'); //Show °F document.querySelectorAll("div.wob_uctr > .wob_t:nth-child(4),div.wob_uctr > .wob_t:nth-child(5)").forEach(el => el.innerText = f + '°C'); //Show °C } //Finishes the if condition else //If the current temperature is in °C { //Starts the else condition document.querySelectorAll("div.wob_uctr > .wob_t:nth-child(1),div.wob_uctr > .wob_t:nth-child(2)").forEach(el => el.innerText = c + '°C'); //Show °C document.querySelectorAll("div.wob_uctr > .wob_t:nth-child(4),div.wob_uctr > .wob_t:nth-child(5)").forEach(el => el.innerText = f + '°F'); //Show °F } //Finishes the else condition } ShowCF(); //Calls the ShowCF function new MutationObserver(async function() { //Whe the weather bar is scrolled await ShowCF(); //Calls the ShowCF function }).observe(document.querySelector("#wob_sh"), { //Defines the element and the characteristics to be observed attributes: true, attributeOldValue: true, characterData: true, characterDataOldValue: true, childList: true, subtree: true }); //Finishes the definitions to be oberserved })();
QingJ © 2025
镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址