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…

Что такое Codenames Timer?

Codenames Timer - это расширение Chrome, разработанное malcolmgeldmacherdeveloper, и его основная функция - "Adds a timer to the online Codenames game at https://codenames.game/. The timer shows up for the spymaster of either team when it…".

Снимки экрана расширения

screenshot

Скачать файл CRX расширения Codenames Timer

Скачайте файлы расширений Codenames Timer в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.

Инструкции по использованию расширения

                        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.                    

Основная информация о расширении

Название Codenames Timer Codenames Timer
ID fddlmlicmnclcjgccammbdpjbcmjnidn
Официальный URL https://chrome.google.com/webstore/detail/codenames-timer/fddlmlicmnclcjgccammbdpjbcmjnidn
Описание Adds a timer to the online Codenames game at https://codenames.game/. The timer shows up for the spymaster of either team when it…
Размер файла 412 KB
Количество установок 77
Текущая Версия 1.0.0
Последнее Обновление 2021-03-30
Дата публикации 2021-03-30
Рейтинг 5.00/5 Всего 5 оценок
Разработчик malcolmgeldmacherdeveloper
Электронная почта [email protected]
Тип оплаты free
Поддерживаемые языки 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"
    }
}