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…

O que é Codenames Timer?

Codenames Timer é uma extensão do Chrome desenvolvida por malcolmgeldmacherdeveloper, e sua principal característica é "Adds a timer to the online Codenames game at https://codenames.game/. The timer shows up for the spymaster of either team when it…".

Capturas de Tela da Extensão

screenshot

Baixar o arquivo CRX da Extensão Codenames Timer

Baixe arquivos de extensão Codenames Timer no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

                        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.                    

Informações Básicas da Extensão

Nome Codenames Timer Codenames Timer
ID fddlmlicmnclcjgccammbdpjbcmjnidn
URL Oficial https://chrome.google.com/webstore/detail/codenames-timer/fddlmlicmnclcjgccammbdpjbcmjnidn
Descrição Adds a timer to the online Codenames game at https://codenames.game/. The timer shows up for the spymaster of either team when it…
Tamanho do Arquivo 412 KB
Contagem de Instalações 77
Versão Atual 1.0.0
Última Atualização 2021-03-30
Data de Publicação 2021-03-30
Classificação 5.00/5 Total de 5 Avaliações
Desenvolvedor malcolmgeldmacherdeveloper
Email [email protected]
Tipo de Pagamento free
Idiomas Suportados 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"
    }
}