RBA Verbesserungsgarnitur
An enhancement extension for the RBA and its forum.
What is RBA Verbesserungsgarnitur?
RBA Verbesserungsgarnitur is a Chrome extension developed by enba devel, and its main feature is "An enhancement extension for the RBA and its forum.".
Extension Screenshots
Download RBA Verbesserungsgarnitur Extension CRX File
Download RBA Verbesserungsgarnitur 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
RBA Verbesserungsgarnitur (RBAVG) is an enhancement extension for the german Battle Rap platform RBA and its forum. RBAVG provides several fixes and enhancements, including web audio players, keyboard navigation and design fixes.
Extension Basic Information
Name | |
ID | phfkkbnoiidmojlpiaibpoeiblnckeop |
Official URL | https://chromewebstore.google.com/detail/rba-verbesserungsgarnitur/phfkkbnoiidmojlpiaibpoeiblnckeop |
Description | An enhancement extension for the RBA and its forum. |
File Size | 2.66 MB |
Installation Count | 27 |
Current Version | 0.3.0 |
Last Updated | 2020-05-26 |
Publish Date | 2020-05-26 |
Developer | enba devel |
[email protected] | |
Payment Type | free |
Extension Website | https://github.com/enbacode/rbaVerbesserungsGarnitur |
Supported Languages | de |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "RBA Verbesserungsgarnitur", "short_name": "rbaVG", "version": "0.3.0", "description": "An enhancement extension for the RBA and its forum.", "author": "enba", "background": { "persistent": false, "scripts": [ "background.js" ] }, "content_scripts": [ { "run_at": "document_end", "matches": [ "*:\/\/*.rbaforum.de\/*", "*:\/\/*.r-b-a.de\/*" ], "js": [ "documentEndContent.js" ] }, { "run_at": "document_start", "matches": [ "*:\/\/*.rbaforum.de\/*", "*:\/\/*.r-b-a.de\/*" ], "js": [ "documentStartContent.js" ] } ], "browser_action": { "default_icon": "icons\/icon_128.png", "default_title": "RBA Verbesserungsgarnitur", "default_popup": "popup.html" }, "icons": { "128": "icons\/icon_128.png", "48": "icons\/icon_48.png", "16": "icons\/icon_16.png" }, "homepage_url": "https:\/\/github.com\/enbacode\/rbaVerbesserungsGarnitur", "options_ui": { "page": "options.html", "open_in_tab": true }, "permissions": [ "storage", "*:\/\/*.r-b-a.de\/*", "*:\/\/*.rbaforum.de\/*" ] } |