Beyond Help Legacy

Chrome extension with helpers to https://www.dndbeyond.com/.

Beyond Help Legacy란 무엇입니까?

Beyond Help Legacy은(는) Edson Mesquita에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Chrome extension with helpers to https://www.dndbeyond.com/."입니다.

확장 프로그램 스크린샷

screenshot

Beyond Help Legacy 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        This is a legacy version of Beyond Help Chrome extension. As the extension got discontinued this is a version for anyone that still want to use it as is. Unfortunately no future support will be given to this extension.                    

확장 프로그램 기본 정보

이름 Beyond Help Legacy Beyond Help Legacy
ID cjjfikncdcifmpbnnmdhhemheamdnhko
공식 URL https://chromewebstore.google.com/detail/beyond-help-legacy/cjjfikncdcifmpbnnmdhhemheamdnhko
설명 Chrome extension with helpers to https://www.dndbeyond.com/.
파일 크기 1.5 MB
설치 횟수 172
현재 버전 0.17.2
최근 업데이트 2020-10-25
출시 날짜 2020-10-25
개발자 Edson Mesquita
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://github.com/emfmesquita/beyondhelp
지원되는 언어 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Beyond Help Legacy",
    "version": "0.17.2",
    "description": "Chrome extension with helpers to https:\/\/www.dndbeyond.com\/.",
    "background": {
        "scripts": [
            "extensionbackground.js"
        ],
        "persistent": true
    },
    "browser_action": {
        "default_icon": {
            "16": "icon-16.png",
            "48": "icon-48.png",
            "128": "icon-128.png"
        },
        "default_title": "Beyond Help",
        "default_popup": "extensionpopup.html"
    },
    "commands": {
        "_execute_browser_action": {
            "suggested_key": {
                "default": "Alt+Shift+D"
            }
        }
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.dndbeyond.com\/*"
            ],
            "js": [
                "extensioncontentscript.js"
            ],
            "css": [
                "extensioncontentstyle.css"
            ]
        }
    ],
    "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'",
    "externally_connectable": {
        "matches": [
            "*:\/\/*.dndbeyond.com\/*"
        ]
    },
    "icons": {
        "16": "icon-16.png",
        "48": "icon-48.png",
        "128": "icon-128.png"
    },
    "incognito": "split",
    "options_ui": {
        "page": "optionspage.html",
        "open_in_tab": true
    },
    "permissions": [
        "activeTab",
        "commands",
        "cookies",
        "downloads",
        "notifications",
        "storage",
        "tabs",
        "webRequest",
        "*:\/\/*.dndbeyond.com\/*"
    ],
    "web_accessible_resources": [
        "webaccessible\/*"
    ],
    "manifest_version": 2
}