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…

Co to jest Codenames Timer?

Codenames Timer to rozszerzenie Chrome opracowane przez malcolmgeldmacherdeveloper, a jego główną funkcją jest „Adds a timer to the online Codenames game at https://codenames.game/. The timer shows up for the spymaster of either team when it…”.

Zrzuty ekranu rozszerzenia

screenshot

Pobierz plik CRX rozszerzenia Codenames Timer

Pobierz pliki rozszerzeń Codenames Timer w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        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.                    

Podstawowe informacje o rozszerzeniu

Nazwa Codenames Timer Codenames Timer
ID fddlmlicmnclcjgccammbdpjbcmjnidn
Oficjalny URL https://chrome.google.com/webstore/detail/codenames-timer/fddlmlicmnclcjgccammbdpjbcmjnidn
Opis Adds a timer to the online Codenames game at https://codenames.game/. The timer shows up for the spymaster of either team when it…
Rozmiar pliku 412 KB
Liczba instalacji 77
Aktualna Wersja 1.0.0
Ostatnia Aktualizacja 2021-03-30
Data Publikacji 2021-03-30
Ocena 5.00/5 Łącznie 5 Oceny
Deweloper malcolmgeldmacherdeveloper
E-mail [email protected]
Typ Płatności free
Obsługiwane Języki 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"
    }
}