Beyond Help Legacy
Chrome extension with helpers to https://www.dndbeyond.com/.
What is Beyond Help Legacy?
Beyond Help Legacy is a Chrome extension developed by Edson Mesquita, and its main feature is "Chrome extension with helpers to https://www.dndbeyond.com/.".
Extension Screenshots
Download Beyond Help Legacy Extension CRX File
Download Beyond Help Legacy extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
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.
Extension Basic Information
Name | Beyond Help Legacy |
ID | cjjfikncdcifmpbnnmdhhemheamdnhko |
Official URL | https://chromewebstore.google.com/detail/beyond-help-legacy/cjjfikncdcifmpbnnmdhhemheamdnhko |
Description | Chrome extension with helpers to https://www.dndbeyond.com/. |
File Size | 1.5 MB |
Installation Count | 172 |
Current Version | 0.17.2 |
Last Updated | 2020-10-25 |
Publish Date | 2020-10-25 |
Developer | Edson Mesquita |
[email protected] | |
Payment Type | free |
Extension Website | https://github.com/emfmesquita/beyondhelp |
Supported Languages | 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 } |