NoBobux
Hides your Robux count on Roblox websites. That's it.
Что такое NoBobux?
NoBobux - это расширение Chrome, разработанное MacAndSwiss, и его основная функция - "Hides your Robux count on Roblox websites. That's it.".
Снимки экрана расширения
Скачать файл CRX расширения NoBobux
Скачайте файлы расширений NoBobux в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
NoBobux is a simple extension that hides the amount of Robux that you have while on the main Roblox website and its subdomains. It accomplishes this by adding a visibility modifier to the box containing your Robux count, and setting that to false. Should be compatible with Roblox+, and Better Roblox (BTR). You can view the source here: https://github.com/raymondwzeng/NoBobux And support my work here: https://ko-fi.com/macandswiss
Основная информация о расширении
Название | NoBobux |
ID | pfnhchkfbieddalghdhaidcdjkbefoel |
Официальный URL | https://chromewebstore.google.com/detail/nobobux/pfnhchkfbieddalghdhaidcdjkbefoel |
Описание | Hides your Robux count on Roblox websites. That's it. |
Размер файла | 17.18 KB |
Количество установок | 415 |
Текущая Версия | 0.0.0.2 |
Последнее Обновление | 2021-04-16 |
Дата публикации | 2021-04-14 |
Рейтинг | 3.42/5 Всего 12 оценок |
Разработчик | MacAndSwiss |
Электронная почта | [email protected] |
Тип оплаты | free |
Официальный сайт расширения | https://github.com/raymondwzeng/NoBobux |
Поддерживаемые языки | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "NoBobux", "version": "0.0.0.2", "manifest_version": 2, "description": "Hides your Robux count on Roblox websites. That's it.", "author": "MacAndSwiss", "icons": { "128": "icon128.png", "48": "icon48.png" }, "content_scripts": [ { "matches": [ "*:\/\/*.roblox.com\/*" ], "js": [ "content.js" ], "run_at": "document_end" } ], "permissions": [ "https:\/\/*.roblox.com\/" ] } |