°F+°C Weather - google

Shows the current °F and °C weather temperature at the same time on google.

2022-04-14 기준 버전입니다. 최신 버전을 확인하세요.

이 스크립트를 설치하려면 Tampermonkey, Greasemonkey 또는 Violentmonkey와 같은 확장 프로그램이 필요합니다.

이 스크립트를 설치하려면 Tampermonkey 또는 Violentmonkey와 같은 확장 프로그램이 필요합니다.

이 스크립트를 설치하려면 Tampermonkey 또는 Violentmonkey와 같은 확장 프로그램이 필요합니다.

이 스크립트를 설치하려면 Tampermonkey 또는 Userscripts와 같은 확장 프로그램이 필요합니다.

이 스크립트를 설치하려면 Tampermonkey와 같은 확장 프로그램이 필요합니다.

이 스크립트를 설치하려면 유저 스크립트 관리자 확장 프로그램이 필요합니다.

(이미 유저 스크립트 관리자가 설치되어 있습니다. 설치를 진행합니다!)

이 스타일을 설치하려면 Stylus와 같은 확장 프로그램이 필요합니다.

이 스타일을 설치하려면 Stylus와 같은 확장 프로그램이 필요합니다.

이 스타일을 설치하려면 Stylus와 같은 확장 프로그램이 필요합니다.

이 스타일을 설치하려면 유저 스타일 관리자 확장 프로그램이 필요합니다.

이 스타일을 설치하려면 유저 스타일 관리자 확장 프로그램이 필요합니다.

이 스타일을 설치하려면 유저 스타일 관리자 확장 프로그램이 필요합니다.

(이미 유저 스타일 관리자가 설치되어 있습니다. 설치를 진행합니다!)

// ==UserScript==
// @name         °F+°C Weather - google
// @namespace    https://greasyfork.org/en/users/670188-hacker09?sort=daily_installs
// @version      2
// @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 c = document.querySelectorAll('div.vk_bk.TylWce.SGNhVe > span,#wob_tm')[0].innerText; //Save the current temperature value
  var f = document.querySelectorAll('div.vk_bk.TylWce.SGNhVe > span:nth-child(1),#wob_ttm')[0].innerText; //Save the hidden temperature value

  document.querySelector("div.vk_bk.wob-unit,div.wob_uctr").style.display = 'none'; //Hide the default °C °F google text

  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
    document.querySelector("div.vk_bk.TylWce.SGNhVe,div.vk_bk.wob_tuctr").innerText = c + '°F ' + f + '°C'; //Show °F °C
  } //Finishes the if condition
  else //If the current temperature is in °C
  { //Starts the else condition
    document.querySelector("div.vk_bk.TylWce.SGNhVe,div.vk_bk.wob_tuctr").innerText = c + '°C ' + f + '°F'; //Show °C °F
  } //Finishes the else condition
})();