Beyond Help Legacy

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

Co to jest Beyond Help Legacy?

Beyond Help Legacy to rozszerzenie Chrome opracowane przez Edson Mesquita, a jego główną funkcją jest „Chrome extension with helpers to https://www.dndbeyond.com/.”.

Zrzuty ekranu rozszerzenia

screenshot

Pobierz plik CRX rozszerzenia Beyond Help Legacy

Pobierz pliki rozszerzeń Beyond Help Legacy w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        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.                    

Podstawowe informacje o rozszerzeniu

Nazwa Beyond Help Legacy Beyond Help Legacy
ID cjjfikncdcifmpbnnmdhhemheamdnhko
Oficjalny URL https://chromewebstore.google.com/detail/beyond-help-legacy/cjjfikncdcifmpbnnmdhhemheamdnhko
Opis Chrome extension with helpers to https://www.dndbeyond.com/.
Rozmiar pliku 1.5 MB
Liczba instalacji 172
Aktualna Wersja 0.17.2
Ostatnia Aktualizacja 2020-10-25
Data Publikacji 2020-10-25
Deweloper Edson Mesquita
E-mail [email protected]
Typ Płatności free
Strona Rozszerzenia https://github.com/emfmesquita/beyondhelp
Obsługiwane Języki 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
}