Moreba
Behind the scenes and more!
Was ist Moreba?
Moreba ist eine Chrome-Erweiterung, die von https://moreba.club entwickelt wurde, und ihr Hauptmerkmal ist "Behind the scenes and more!".
Erweiterungsscreenshots
Moreba-Erweiterungs-CRX-Datei herunterladen
Laden Sie Moreba-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
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
Grundlegende Informationen zur Erweiterung
Name | |
ID | eheahakaengdijmkoeegphbnlgphlfii |
Offizielle URL | https://chromewebstore.google.com/detail/moreba/eheahakaengdijmkoeegphbnlgphlfii |
Beschreibung | Behind the scenes and more! |
Dateigröße | 99.09 KB |
Installationsanzahl | 866 |
Aktuelle Version | 1.43 |
Letztes Update | 2020-10-08 |
Veröffentlichungsdatum | 2020-03-31 |
Bewertung | 4.22/5 Insgesamt 9 Bewertungen |
Entwickler | https://moreba.club |
[email protected] | |
Zahlungsart | free |
Erweiterungswebsite | http://moreba.club |
URL der Datenschutzrichtlinien-Seite | http://moreba.club/privacy.html |
Unterstützte Sprachen | 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" ] } ] } |