Beyond Help Legacy
Chrome extension with helpers to https://www.dndbeyond.com/.
Beyond Help Legacy là gì?
Beyond Help Legacy là một tiện ích mở rộng Chrome được phát triển bởi Edson Mesquita, và tính năng chính của nó là "Chrome extension with helpers to https://www.dndbeyond.com/.".
Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng
Tải xuống tệp CRX của tiện ích mở rộng Beyond Help Legacy
Tải xuống các tệp mở rộng Beyond Help Legacy dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.
Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng
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.
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | Beyond Help Legacy |
ID | cjjfikncdcifmpbnnmdhhemheamdnhko |
URL Chính Thức | https://chromewebstore.google.com/detail/beyond-help-legacy/cjjfikncdcifmpbnnmdhhemheamdnhko |
Mô tả | Chrome extension with helpers to https://www.dndbeyond.com/. |
Kích Thước Tệp | 1.5 MB |
Số Lần Cài Đặt | 172 |
Phiên Bản Hiện Tại | 0.17.2 |
Cập Nhật Lần Cuối | 2020-10-25 |
Ngày Phát Hành | 2020-10-25 |
Nhà Phát Triển | Edson Mesquita |
[email protected] | |
Loại Thanh Toán | free |
Trang Web Mở Rộng | https://github.com/emfmesquita/beyondhelp |
Ngôn Ngữ Được Hỗ Trợ | 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 } |