Web Go Board

Uses HTML5 to edit SGF files directly in the browser. Pls report issues to https://github.com/IlyaKirillov/GoProject/issues

Что такое Web Go Board?

Web Go Board - это расширение Chrome, разработанное https://webgoboard.net, и его основная функция - "Uses HTML5 to edit SGF files directly in the browser. Pls report issues to https://github.com/IlyaKirillov/GoProject/issues".

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

screenshot

Скачать файл CRX расширения Web Go Board

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

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

                        To allow the opening of local sgf files u need to go to  chrome://extensions page and turn on "Allow access to file URLs" flag.                    

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

Название Web Go Board Web Go Board
ID cdmhoehokaoghadonjfdbhieajggfbmd
Официальный URL https://chromewebstore.google.com/detail/web-go-board/cdmhoehokaoghadonjfdbhieajggfbmd
Описание Uses HTML5 to edit SGF files directly in the browser. Pls report issues to https://github.com/IlyaKirillov/GoProject/issues
Размер файла 108 KB
Количество установок 2,105
Текущая Версия 0.10.12
Последнее Обновление 2022-03-25
Дата публикации 2018-03-03
Рейтинг 4.88/5 Всего 51 оценок
Разработчик https://webgoboard.net
Электронная почта [email protected]
Тип оплаты free
URL страницы помощи https://github.com/IlyaKirillov/GoProject/issues
URL страницы политики конфиденциальности https://ilyakirillov.github.io/webgoboard.io/privacypolicy
Поддерживаемые языки en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "background": {
        "page": "fileHandler.html"
    },
    "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'",
    "description": "Uses HTML5 to edit SGF files directly in the browser. Pls report issues to https:\/\/github.com\/IlyaKirillov\/GoProject\/issues",
    "browser_action": {
        "default_icon": {
            "19": "content\/icon19.png",
            "38": "content\/icon38.png"
        },
        "default_title": "Web Go Board"
    },
    "file_browser_handlers": [
        {
            "default_title": "Open with Web Go Board",
            "file_filters": [
                "filesystem:*.sgf",
                "filesystem:*.gib",
                "filesystem:*.ngf"
            ],
            "id": "open-in-WebGoBoard"
        }
    ],
    "incognito": "split",
    "mime_types": [
        "application\/x-go-sgf"
    ],
    "name": "Web Go Board",
    "version": "0.10.12",
    "permissions": [
        "fileBrowserHandler",
        "webRequest",
        "webRequestBlocking",
        ""
    ],
    "web_accessible_resources": [
        "getFrameId",
        "content\/editor.html",
        "http:\/*",
        "https:\/*",
        "ftp:\/*",
        "file:\/*",
        "chrome-extension:\/*",
        "filesystem:\/*",
        "drive:*"
    ]
}