Moreba
Behind the scenes and more!
Τι είναι το Moreba;
Το Moreba είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον https://moreba.club, και η κύρια λειτουργία του είναι "Behind the scenes and more!".
Στιγμιότυπα Επέκτασης
Λήψη αρχείου CRX της επέκτασης Moreba
Λήψη αρχείων επέκτασης Moreba σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.
Οδηγίες Χρήσης της Επέκτασης
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
Βασικές Πληροφορίες Επέκτασης
Όνομα | |
ID | eheahakaengdijmkoeegphbnlgphlfii |
Επίσημο URL | https://chromewebstore.google.com/detail/moreba/eheahakaengdijmkoeegphbnlgphlfii |
Περιγραφή | Behind the scenes and more! |
Μέγεθος Αρχείου | 99.09 KB |
Αριθμός Εγκαταστάσεων | 866 |
Τρέχουσα Έκδοση | 1.43 |
Τελευταία Ενημέρωση | 2020-10-08 |
Ημερομηνία Δημοσίευσης | 2020-03-31 |
Αξιολόγηση | 4.22/5 Συνολικά 9 Αξιολογήσεις |
Προγραμματιστής | https://moreba.club |
Ηλεκτρονικό ταχυδρομείο | [email protected] |
Τύπος Πληρωμής | free |
Ιστότοπος Επέκτασης | http://moreba.club |
URL της Σελίδας Πολιτικής Απορρήτου | http://moreba.club/privacy.html |
Υποστηριζόμενες Γλώσσες | 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" ] } ] } |