Mac's Roblox Utils
A collection of neat stuff to enchance your Roblox website experience.
Что такое Mac's Roblox Utils?
Mac's Roblox Utils - это расширение Chrome, разработанное MacAndSwiss, и его основная функция - "A collection of neat stuff to enchance your Roblox website experience.".
Снимки экрана расширения
Скачать файл CRX расширения Mac's Roblox Utils
Скачайте файлы расширений Mac's Roblox Utils в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
Mac's Roblox Utils!
I decided to make a new extension rather than expanding on NoBobux, to leave it as a standalone product. This may continue receiving new updates as features are requested or as I see fit.
⌚ What's new:
- 0.0.2: Fixed a bug where plugin was sending double messages, one without a proper payload.
🌟Features:
- 🛑 Plugin safety score warns you about potentially malicious plugins, BEFORE you install.
DISCLAIMER: This is not a foolproof system. Always, ALWAYS check the source of the plugins when you install. I am not responsible for false negatives. Основная информация о расширении
| Название | |
| ID | aamiahgongddccmfmocapbcahonkknig |
| Официальный URL | https://chromewebstore.google.com/detail/macs-roblox-utils/aamiahgongddccmfmocapbcahonkknig |
| Описание | A collection of neat stuff to enchance your Roblox website experience. |
| Размер файла | 18.32 KB |
| Количество установок | 2,370 |
| Текущая Версия | 0.0.0.2 |
| Последнее Обновление | 2021-07-18 |
| Дата публикации | 2021-07-18 |
| Рейтинг | 3.50/5 Всего 4 оценок |
| Разработчик | MacAndSwiss |
| Электронная почта | [email protected] |
| Тип оплаты | free |
| Официальный сайт расширения | https://github.com/raymondwzeng/macs-roblox-utils |
| Поддерживаемые языки | en-US |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"name": "Mac's Roblox Utils",
"version": "0.0.0.2",
"manifest_version": 3,
"description": "A collection of neat stuff to enchance your Roblox website experience.",
"author": "MacAndSwiss",
"icons": {
"128": "icon128.png",
"48": "icon48.png"
},
"content_scripts": [
{
"matches": [
"*:\/\/*.roblox.com\/*"
],
"js": [
"content.js"
],
"run_at": "document_end"
}
],
"action": {
"default_title": "Launch Mac's Roblox Util",
"default_popup": "Main.html"
},
"background": {
"service_worker": "background.js"
},
"host_permissions": [
"https:\/\/*.roblox.com\/"
],
"permissions": [
"storage",
"webNavigation",
"tabs"
]
} | |