°F+°C Weather - google

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

As of 13.04.2022. See апошняя версія.

You will need to install an extension such as Tampermonkey, Greasemonkey or Violentmonkey to install this script.

You will need to install an extension such as Tampermonkey or Violentmonkey to install this script.

You will need to install an extension such as Tampermonkey or Violentmonkey to install this script.

You will need to install an extension such as Tampermonkey or Userscripts to install this script.

You will need to install an extension such as Tampermonkey to install this script.

You will need to install a user script manager extension to install this script.

(I already have a user script manager, let me install it!)

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

(I already have a user style manager, let me install it!)

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

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

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