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은(는) https://webgoboard.net에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Uses HTML5 to edit SGF files directly in the browser. Pls report issues to https://github.com/IlyaKirillov/GoProject/issues"입니다.

확장 프로그램 스크린샷

screenshot

Web Go Board 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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:*"
    ]
}