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…

Wat is Codenames Timer?

Codenames Timer is een Chrome-extensie ontwikkeld door malcolmgeldmacherdeveloper, en de belangrijkste functie is "Adds a timer to the online Codenames game at https://codenames.game/. The timer shows up for the spymaster of either team when it…".

Extensie Screenshots

screenshot

Download het CRX-bestand van de extensie Codenames Timer

Download Codenames Timer-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

                        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.                    

Basisinformatie over de Extensie

Naam Codenames Timer Codenames Timer
ID fddlmlicmnclcjgccammbdpjbcmjnidn
Officiële URL https://chrome.google.com/webstore/detail/codenames-timer/fddlmlicmnclcjgccammbdpjbcmjnidn
Beschrijving Adds a timer to the online Codenames game at https://codenames.game/. The timer shows up for the spymaster of either team when it…
Bestandsgrootte 412 KB
Aantal Installaties 77
Huidige Versie 1.0.0
Laatst Bijgewerkt 2021-03-30
Publicatiedatum 2021-03-30
Beoordeling 5.00/5 Totaal 5 Beoordelingen
Ontwikkelaar malcolmgeldmacherdeveloper
E-mail [email protected]
Betalingswijze free
Ondersteunde Talen 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"
    }
}