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文件

下載Beyond Help Legacy擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        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
官方網址 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
}