Moreba
Behind the scenes and more!
What is Moreba?
Moreba is a Chrome extension developed by https://moreba.club, and its main feature is "Behind the scenes and more!".
Extension Screenshots
Download Moreba Extension CRX File
Download Moreba 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
Features: - Stops Torebas cameras from freezing/crashing - Hide maintenance and restocking screens, so you can see behind the scenes! - Remove the distracting scrolling ticker at the bottom of the play screen. - Auto-queue during maintenance & restocking
Extension Basic Information
Name | |
ID | eheahakaengdijmkoeegphbnlgphlfii |
Official URL | https://chromewebstore.google.com/detail/moreba/eheahakaengdijmkoeegphbnlgphlfii |
Description | Behind the scenes and more! |
File Size | 99.09 KB |
Installation Count | 866 |
Current Version | 1.43 |
Last Updated | 2020-10-08 |
Publish Date | 2020-03-31 |
Rating | 4.22/5 Total 9 Ratings |
Developer | https://moreba.club |
[email protected] | |
Payment Type | free |
Extension Website | http://moreba.club |
Privacy Policy Page URL | http://moreba.club/privacy.html |
Supported Languages | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Moreba", "version": "1.43", "description": "Behind the scenes and more!", "icons": { "128": "morebamain.png" }, "web_accessible_resources": [ "*.css", "*.js", "*.png", "*.gif", "*.jpg", "aprilfools\/*" ], "permissions": [ "*:\/\/*.toreba.net\/*", "webNavigation", "storage" ], "background": { "scripts": [ "background.js" ] }, "browser_action": { "default_title": "Change Options for Moreba", "default_popup": "options.html" }, "content_scripts": [ { "matches": [ "*:\/\/*.toreba.net\/*" ], "all_frames": true, "run_at": "document_idle", "js": [ "toreba_bts.js" ] }, { "matches": [ "*:\/\/*.toreba.net\/*" ], "all_frames": true, "run_at": "document_start", "js": [ "toreba_redirect.js" ] }, { "matches": [ "*:\/\/*.toreba.net\/*" ], "all_frames": true, "run_at": "document_start", "js": [ "aprilfools.js" ] } ] } |