Codenames Timer

Adds a timer to the online Codenames game at https://codenames.game/. The timer shows up for the spymaster of either team when it…

Qu'est-ce que Codenames Timer ?

Codenames Timer est une extension Chrome développée par malcolmgeldmacherdeveloper, et sa fonction principale est "Adds a timer to the online Codenames game at https://codenames.game/. The timer shows up for the spymaster of either team when it…".

Captures d'Écran de l'Extension

screenshot

Télécharger le fichier CRX de l'extension Codenames Timer

Téléchargez les fichiers d'extension Codenames Timer 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

                        Adds a timer to the online Codenames game at https://codenames.game/. The timer shows up for the spymaster of either team when it is their turn for coming up with a clue. Once time runs out, whatever has been entered/selected is submitted whether you're ready or not! This timer is super useful for speeding up games of Codenames if you have normally slow spymasters.                    

Informations de Base sur l'Extension

Nom Codenames Timer Codenames Timer
ID fddlmlicmnclcjgccammbdpjbcmjnidn
URL Officiel https://chrome.google.com/webstore/detail/codenames-timer/fddlmlicmnclcjgccammbdpjbcmjnidn
Description Adds a timer to the online Codenames game at https://codenames.game/. The timer shows up for the spymaster of either team when it…
Taille du Fichier 412 KB
Nombre d'Installations 77
Version Actuelle 1.0.0
Dernière Mise à Jour 2021-03-30
Date de Publication 2021-03-30
Évaluation 5.00/5 Total 5 Évaluations
Développeur malcolmgeldmacherdeveloper
Email [email protected]
Type de Paiement free
Langues Prises en Charge en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Codenames Timer",
    "version": "1.0.0",
    "content_scripts": [
        {
            "matches": [
                "https:\/\/codenames.game\/*"
            ],
            "css": [
                "content.css"
            ],
            "js": [
                "jquery-3.1.1.min.js",
                "content.js"
            ]
        }
    ],
    "icons": {
        "16": "icon.png",
        "48": "icon.png",
        "128": "icon.png"
    },
    "browser_action": {
        "default_icon": "icon.png"
    }
}