Tribalwars Millisecond Clock

Adds a millisecond clock to the tribalwars page

Cos'è Tribalwars Millisecond Clock?

Tribalwars Millisecond Clock è un'estensione di Chrome sviluppata da Ryan Davis, e la sua funzione principale è "Adds a millisecond clock to the tribalwars page".

Screenshot dell'Estensione

screenshot
screenshot
screenshot

Scarica il file CRX dell'estensione Tribalwars Millisecond Clock

Scarica i file di estensione Tribalwars Millisecond Clock in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        This extension adds a clock to the side of the screen in tribal wars which includes the milliseconds, to make timing your attacks super precise! There is also an offset adjuster to ensure you get the exact right millisecond as the server time.

**Updates**
Version 3.0 - Includes support for all the tribal wars domains available from their site.                    

Informazioni di Base sull'Estensione

Nome Tribalwars Millisecond Clock Tribalwars Millisecond Clock
ID ockippfhjpjfmdkhdcjecepcleopfamm
URL Ufficiale https://chromewebstore.google.com/detail/tribalwars-millisecond-cl/ockippfhjpjfmdkhdcjecepcleopfamm
Descrizione Adds a millisecond clock to the tribalwars page
Dimensione del File 8.98 KB
Conteggio Installazioni 1,042
Versione Corrente 3.0
Ultimo Aggiornamento 2020-08-05
Data di Pubblicazione 2020-06-02
Valutazione 4.13/5 Totale 8 Valutazioni
Sviluppatore Ryan Davis
Email [email protected]
Tipo di Pagamento free
Lingue Supportate en-GB
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Tribalwars Millisecond Clock",
    "version": "3.0",
    "description": "Adds a millisecond clock to the tribalwars page",
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "permissions": [
        "declarativeContent",
        "storage"
    ],
    "page_action": {
        "default_popup": "popup.html",
        "default_icon": {
            "16": "images\/logo16.png",
            "32": "images\/logo32.png",
            "48": "images\/logo48.png",
            "128": "images\/logo128.png"
        }
    },
    "icons": {
        "16": "images\/logo16.png",
        "32": "images\/logo32.png",
        "48": "images\/logo48.png",
        "128": "images\/logo128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.die-staemme.de\/*",
                "*:\/\/*.divoke-kmene.sk\/*",
                "*:\/\/*.divokekmeny.cz\/*",
                "*:\/\/*.fyletikesmaxes.gr\/*",
                "*:\/\/*.guerrastribales.es\/*",
                "*:\/\/*.guerretribale.fr\/*",
                "*:\/\/*.klanhaboru.hu\/*",
                "*:\/\/*.klanlar.org\/*",
                "*:\/\/*.plemena.com\/*",
                "*:\/\/*.plemiona.pl\/*",
                "*:\/\/*.staemme.ch\/*",
                "*:\/\/*.tribals.it\/*",
                "*:\/\/*.tribalwars.ae\/*",
                "*:\/\/*.tribalwars.asia\/*",
                "*:\/\/*.tribalwars.co.uk\/*",
                "*:\/\/*.tribalwars.com.br\/*",
                "*:\/\/*.tribalwars.com.pt\/*",
                "*:\/\/*.tribalwars.com\/*",
                "*:\/\/*.tribalwars.dk\/*",
                "*:\/\/*.tribalwars.net\/*",
                "*:\/\/*.tribalwars.nl\/*",
                "*:\/\/*.tribalwars.se\/*",
                "*:\/\/*.tribalwars.us\/*",
                "*:\/\/*.tribalwars.works\/*",
                "*:\/\/*.triburile.ro\/*",
                "*:\/\/*.vojnaplemen.si\/*",
                "*:\/\/*.voyna-plemyon.ru\/*"
            ],
            "css": [
                "myStyles.css"
            ],
            "js": [
                "contentScript.js"
            ],
            "run_at": "document_end"
        }
    ],
    "manifest_version": 2
}