Timer Watch

Displays the timer on timerminutes.com and also shows a digital clock.

ही स्क्रिप्ट इंस्टॉल करा?
लेखकाने सुचवलेली स्क्रिप्ट

तुम्हाला कदाचित ही स्क्रिप्टदेखील आवडेल: Redirect to imgur.

ही स्क्रिप्ट इंस्टॉल करा

ही स्क्रिप्ट इंस्टॉल करण्यासाठी तुम्हाला Tampermonkey, Greasemonkey किंवा Violentmonkey यासारखे एक्स्टेंशन इंस्टॉल करावे लागेल.

ही स्क्रिप्ट इंस्टॉल करण्यासाठी तुम्हाला Tampermonkey किंवा Violentmonkey यासारखे एक्स्टेंशन इंस्टॉल करावे लागेल..

ही स्क्रिप्ट इंस्टॉल करण्यासाठी तुम्हाला Tampermonkey किंवा Violentmonkey यासारखे एक्स्टेंशन इंस्टॉल करावे लागेल..

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

ही स्क्रिप्ट इंस्टॉल करण्यासाठी तुम्हाला Tampermonkey यासारखे एक्स्टेंशन इंस्टॉल करावे लागेल..

ही स्क्रिप्ट इंस्टॉल करण्यासाठी तुम्हाला एक युझर स्क्रिप्ट व्यवस्थापक एक्स्टेंशन इंस्टॉल करावे लागेल.

(माझ्याकडे आधीच युझर स्क्रिप्ट व्यवस्थापक आहे, मला इंस्टॉल करू द्या!)

ही स्टाईल इंस्टॉल करण्यासाठी तुम्हाला Stylus सारखे एक्स्टेंशन इंस्टॉल करावे लागेल.

ही स्टाईल इंस्टॉल करण्यासाठी तुम्हाला Stylus सारखे एक्स्टेंशन इंस्टॉल करावे लागेल.

ही स्टाईल इंस्टॉल करण्यासाठी तुम्हाला Stylus सारखे एक्स्टेंशन इंस्टॉल करावे लागेल.

ही स्टाईल इंस्टॉल करण्यासाठी तुम्हाला एक युझर स्टाईल व्यवस्थापक इंस्टॉल करावे लागेल.

ही स्टाईल इंस्टॉल करण्यासाठी तुम्हाला एक युझर स्टाईल व्यवस्थापक इंस्टॉल करावे लागेल.

ही स्टाईल इंस्टॉल करण्यासाठी तुम्हाला एक युझर स्टाईल व्यवस्थापक इंस्टॉल करावे लागेल.

(माझ्याकडे आधीच युझर स्टाईल व्यवस्थापक आहे, मला इंस्टॉल करू द्या!)

// ==UserScript==
// @name         Timer Watch
// @namespace    https://greasyfork.org/en/users/670188-hacker09?sort=daily_installs
// @version      2
// @description  Displays the timer on timerminutes.com and also shows a digital clock.
// @author       hacker09
// @match        https://www.timerminutes.com/*
// @icon         https://www.timerminutes.com/favicon.ico
// @run-at       document-end
// @grant        none
// ==/UserScript==


(function() {
  'use strict';
  document.querySelector("#btnreset").style.display = 'none'; //Hides the element
  document.querySelector("div.header").style.display = 'none'; //Hides the element
  document.querySelector("div.footer").style.display = 'none'; //Hides the element
  document.querySelector("#timer-form").style.display = 'none'; //Hides the element
  document.querySelector("main > div > h1").style.display = 'none'; //Hides the element
  document.querySelector("main > div > h2").style.display = 'none'; //Hides the element
  document.querySelector("main > div > h3").style.display = 'none'; //Hides the element
  document.querySelectorAll("p").forEach(el => el.style.display = 'none'); //Hides the element
  document.querySelectorAll("ul.listh").forEach(el => el.style.display = 'none'); //Hides the element
  document.querySelectorAll("div.margin10.center").forEach(el => el.style.display = 'none'); //Hides the element

  document.querySelector("#result > span").insertAdjacentHTML('afterEnd', `<br><span class="time"></span>`); //Show the time

  function showTime() { //Creates a new function
    var date = new Date(); //Creates a variable to hold the computer date on the local time zone
    var h = date.getHours(); //Get the hours in the computer date on the local time zone
    var m = date.getMinutes(); //Get the minutes in the computer date on the local time zone
    var s = date.getSeconds(); //Get the seconds in the computer date on the local time zone

    document.querySelector(".time").innerText = h + ":" + m + ":" + s; //Adds the current time to the time element
    setTimeout(showTime, 1000); //Update the time every second
  } //Finishes the showTime function

  showTime(); //Runs the showTime function
})();