Trim Countdown

Removes all unnessesary data from timeanddate.com countdown.

Aby zainstalować ten skrypt, wymagana jest instalacje jednego z następujących rozszerzeń: Tampermonkey, Greasemonkey lub Violentmonkey.

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

Aby zainstalować ten skrypt, wymagana jest instalacje jednego z następujących rozszerzeń: Tampermonkey, Violentmonkey.

Aby zainstalować ten skrypt, wymagana będzie instalacja rozszerzenia Tampermonkey lub Userscripts.

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

Aby zainstalować ten skrypt, musisz zainstalować rozszerzenie menedżera skryptów użytkownika.

(Mam już menedżera skryptów użytkownika, pozwól mi to zainstalować!)

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.

Będziesz musiał zainstalować rozszerzenie menedżera stylów użytkownika, aby zainstalować ten styl.

Będziesz musiał zainstalować rozszerzenie menedżera stylów użytkownika, aby zainstalować ten styl.

Musisz zainstalować rozszerzenie menedżera stylów użytkownika, aby zainstalować ten styl.

(Mam już menedżera stylów użytkownika, pozwól mi to zainstalować!)

// ==UserScript==
// @name         Trim Countdown
// @namespace    http://tampermonkey.net/
// @version      1.0
// @description  Removes all unnessesary data from timeanddate.com countdown.
// @copyright    2018, Santeri Hetekivi (https://github.com/SanteriHetekivi)
// @license      Apache-2.0
// @author       Santeri Hetekivi
// @match        https://www.timeanddate.com/countdown/*
// @grant        none
// @require      https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js
// ==/UserScript==

(function() {
    'use strict';
    // Query for minutes.
    var minutes_query = "#el_m1";
    // Query for seconds.
    var seconds_query = "#el_s1";
    // Query for minutes and seconds.
    var minutes_or_seconds_query = minutes_query+", "+seconds_query;
    // If minutes and seconds are found.
    if($(minutes_or_seconds_query).length === 2)
    {
        // Adding minutes and seconds to end of body.
        $(minutes_or_seconds_query).appendTo("body");
        // Remove all other elements from body.
        $("body > :not("+minutes_or_seconds_query+")").remove();
        // Removing all classes from minutes and seconds.
        $(minutes_or_seconds_query).removeClass();
        // Setting font-size for minutes and seconds to 70% of viewport.
        $(minutes_or_seconds_query).css("font-size", "70vw");
    }
})();