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…

Was ist Codenames Timer?

Codenames Timer ist eine Chrome-Erweiterung, die von malcolmgeldmacherdeveloper entwickelt wurde, und ihr Hauptmerkmal ist "Adds a timer to the online Codenames game at https://codenames.game/. The timer shows up for the spymaster of either team when it…".

Erweiterungsscreenshots

screenshot

Codenames Timer-Erweiterungs-CRX-Datei herunterladen

Laden Sie Codenames Timer-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        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.                    

Grundlegende Informationen zur Erweiterung

Name Codenames Timer Codenames Timer
ID fddlmlicmnclcjgccammbdpjbcmjnidn
Offizielle URL https://chrome.google.com/webstore/detail/codenames-timer/fddlmlicmnclcjgccammbdpjbcmjnidn
Beschreibung Adds a timer to the online Codenames game at https://codenames.game/. The timer shows up for the spymaster of either team when it…
Dateigröße 412 KB
Installationsanzahl 77
Aktuelle Version 1.0.0
Letztes Update 2021-03-30
Veröffentlichungsdatum 2021-03-30
Bewertung 5.00/5 Insgesamt 5 Bewertungen
Entwickler malcolmgeldmacherdeveloper
E-Mail [email protected]
Zahlungsart free
Unterstützte Sprachen 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"
    }
}