Beyond Help Legacy

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

Beyond Help Legacy क्या है?

Beyond Help Legacy Edson Mesquita द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Chrome extension with helpers to https://www.dndbeyond.com/."।

एक्सटेंशन स्क्रीनशॉट्स

screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Beyond Help Legacy एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ 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
}