Gamers' Plane

Options for changing the Gamers' Plane experience.

Gamers' Plane란 무엇입니까?

Gamers' Plane은(는) adam에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Options for changing the Gamers' Plane experience."입니다.

확장 프로그램 스크린샷

screenshot

Gamers' Plane 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        Indicator to see which players are online.
Populate character sheets from DnD Beyond                    

확장 프로그램 기본 정보

이름 Gamers' Plane Gamers' Plane
ID bbcbnnmaankiikjcdfdpejnebjllldmp
공식 URL https://chromewebstore.google.com/detail/gamers-plane/bbcbnnmaankiikjcdfdpejnebjllldmp
설명 Options for changing the Gamers' Plane experience.
파일 크기 52.94 KB
설치 횟수 76
현재 버전 1.0.0.3
최근 업데이트 2022-05-27
출시 날짜 2020-08-18
평점 5.00/5 총 2 개의 평점
개발자 adam
이메일 [email protected]
결제 유형 free
지원되는 언어 en-GB
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Gamers' Plane",
    "version": "1.0.0.3",
    "icons": {
        "16": "icon_16.png",
        "32": "icon_32.png",
        "64": "icon_48.png",
        "128": "icon_128.png"
    },
    "description": "Options for changing the Gamers' Plane experience.",
    "permissions": [
        "storage"
    ],
    "web_accessible_resources": [
        "options.html"
    ],
    "content_scripts": [
        {
            "matches": [
                "https:\/\/gamersplane.com\/forums\/thread\/*",
                "https:\/\/mapdm.com\/forums\/thread\/*"
            ],
            "css": [
                "gp-thread.css"
            ],
            "js": [
                "jquery-3.5.1.min.js",
                "setting-storage.js",
                "gp-thread.js"
            ],
            "run_at": "document_idle"
        },
        {
            "matches": [
                "https:\/\/gamersplane.com\/characters\/dnd5\/*\/edit\/",
                "https:\/\/mapdm.com\/characters\/dnd5\/*\/edit\/"
            ],
            "css": [
                "gp-edit-dnd5e.css"
            ],
            "js": [
                "jquery-3.5.1.min.js",
                "setting-storage.js",
                "gp-edit-dnd5e.js"
            ],
            "run_at": "document_idle"
        },
        {
            "matches": [
                "https:\/\/gamersplane.com\/characters\/custom\/*\/edit\/",
                "https:\/\/mapdm.com\/characters\/custom\/*\/edit\/"
            ],
            "css": [
                "gp-edit-dnd5e.css"
            ],
            "js": [
                "jquery-3.5.1.min.js",
                "setting-storage.js",
                "gp-edit-custom.js"
            ],
            "run_at": "document_idle"
        },
        {
            "matches": [
                "https:\/\/www.dndbeyond.com\/profile\/*\/characters\/*",
                "https:\/\/www.dndbeyond.com\/characters\/*\/*",
                "https:\/\/www.dndbeyond.com\/characters\/*"
            ],
            "css": [
                "dndb-charactersheet.css"
            ],
            "js": [
                "jquery-3.5.1.min.js",
                "setting-storage.js",
                "dndb-charactersheet.js"
            ],
            "run_at": "document_idle"
        }
    ],
    "options_ui": {
        "page": "options.html",
        "open_in_tab": false
    },
    "manifest_version": 2
}