Spelltable Spectator

This extension adds a button to the pre-game page that takes you to the page that allows you to join the lobby as a spectator

Что такое Spelltable Spectator?

Spelltable Spectator - это расширение Chrome, разработанное 13kevlop, и его основная функция - "This extension adds a button to the pre-game page that takes you to the page that allows you to join the lobby as a spectator".

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

screenshot

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

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

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

                        This extension adds a button to the pre-game page that takes you to the page that allows you to join the lobby as a spectator                    

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

Название Spelltable Spectator Spelltable Spectator
ID gibfelmjecbkbdkkgbgnknnfplmhdcmn
Официальный URL https://chromewebstore.google.com/detail/spelltable-spectator/gibfelmjecbkbdkkgbgnknnfplmhdcmn
Описание This extension adds a button to the pre-game page that takes you to the page that allows you to join the lobby as a spectator
Размер файла 93.07 KB
Количество установок 353
Текущая Версия 0.1.0
Последнее Обновление 2023-02-27
Дата публикации 2023-01-21
Рейтинг 5.00/5 Всего 1 оценок
Разработчик 13kevlop
Электронная почта [email protected]
Тип оплаты free
Поддерживаемые языки en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Spelltable Spectator",
    "version": "0.1.0",
    "description": "This extension adds a button to the pre-game page that takes you to the page that allows you to join the lobby as a spectator",
    "icons": {
        "16": "magnifying-glass.png",
        "32": "magnifying-glass.png",
        "48": "magnifying-glass.png",
        "128": "magnifying-glass.png"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/spelltable.wizards.com\/*"
            ],
            "css": [
                "styles.css"
            ],
            "js": [
                "app.js"
            ]
        }
    ]
}