Tribalwars Millisecond Clock
Adds a millisecond clock to the tribalwars page
Qu'est-ce que Tribalwars Millisecond Clock ?
Tribalwars Millisecond Clock est une extension Chrome développée par Ryan Davis, et sa fonction principale est "Adds a millisecond clock to the tribalwars page".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension Tribalwars Millisecond Clock
Téléchargez les fichiers d'extension Tribalwars Millisecond Clock au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.
Instructions d'Utilisation de l'Extension
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.
Informations de Base sur l'Extension
Nom | Tribalwars Millisecond Clock |
ID | ockippfhjpjfmdkhdcjecepcleopfamm |
URL Officiel | https://chromewebstore.google.com/detail/tribalwars-millisecond-cl/ockippfhjpjfmdkhdcjecepcleopfamm |
Description | Adds a millisecond clock to the tribalwars page |
Taille du Fichier | 8.98 KB |
Nombre d'Installations | 1,042 |
Version Actuelle | 3.0 |
Dernière Mise à Jour | 2020-08-05 |
Date de Publication | 2020-06-02 |
Évaluation | 4.13/5 Total 8 Évaluations |
Développeur | Ryan Davis |
[email protected] | |
Type de Paiement | free |
Langues Prises en Charge | 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 } |