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…

Hvad er Codenames Timer?

Codenames Timer er en Chrome-udvidelse udviklet af malcolmgeldmacherdeveloper, og dens hovedfunktion er "Adds a timer to the online Codenames game at https://codenames.game/. The timer shows up for the spymaster of either team when it…".

Udvidelsesskærmbilleder

screenshot

Download Codenames Timer-udvidelses-CRX-fil

Download Codenames Timer-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.

Brugsanvisning til Udvidelsen

                        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.                    

Grundlæggende oplysninger om udvidelsen

Navn Codenames Timer Codenames Timer
ID fddlmlicmnclcjgccammbdpjbcmjnidn
Officiel URL https://chrome.google.com/webstore/detail/codenames-timer/fddlmlicmnclcjgccammbdpjbcmjnidn
Beskrivelse Adds a timer to the online Codenames game at https://codenames.game/. The timer shows up for the spymaster of either team when it…
Filstørrelse 412 KB
Antal Installationer 77
Nuværende Version 1.0.0
Senest Opdateret 2021-03-30
Udgivelsesdato 2021-03-30
Bedømmelse 5.00/5 Samlet 5 Bedømmelser
Udvikler malcolmgeldmacherdeveloper
E-mail [email protected]
Betalingsmetode free
Understøttede Sprog 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"
    }
}