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" ] } ] } |