Roblox Cancel Pending Requests
Allows you to cancel pending friend requests on Roblox
Что такое Roblox Cancel Pending Requests?
Roblox Cancel Pending Requests - это расширение Chrome, разработанное bg9, и его основная функция - "Allows you to cancel pending friend requests on Roblox".
Снимки экрана расширения
Скачать файл CRX расширения Roblox Cancel Pending Requests
Скачайте файлы расширений Roblox Cancel Pending Requests в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
This extension is a highly requested feature on the roblox.com website, but was never added. With this extension you'll be able to cancel any pending friend requests you sent, an example of using this would be if you accidentally sent someone a friend request and would like to cancel it. If you experience any bugs, message bg9 on Roblox. Check out my other Roblox extensions: Roblox Better Friends Visited (redesigns the "friend activity" banner and adds back game rating + player count https://chrome.google.com/webstore/detail/roblox-better-friends-visted/lppmnchjiipllfomfmbfmehmgjdocghl
Основная информация о расширении
Название | Roblox Cancel Pending Requests |
ID | lcbammllahiomehmmgknajealgajchbp |
Официальный URL | https://chromewebstore.google.com/detail/roblox-cancel-pending-req/lcbammllahiomehmmgknajealgajchbp |
Описание | Allows you to cancel pending friend requests on Roblox |
Размер файла | 50.56 KB |
Количество установок | 19,808 |
Текущая Версия | 1.0 |
Последнее Обновление | 2023-06-10 |
Дата публикации | 2021-05-27 |
Рейтинг | 4.31/5 Всего 35 оценок |
Разработчик | bg9 |
Электронная почта | [email protected] |
Тип оплаты | free |
Поддерживаемые языки | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Roblox Cancel Pending Requests", "version": "1.0", "manifest_version": 2, "description": "Allows you to cancel pending friend requests on Roblox", "browser_action": { "default_icon": "\/icons\/icon128x128.png" }, "background": { "persistent": false, "scripts": [ "background.js" ] }, "content_scripts": [ { "matches": [ "*:\/\/*.roblox.com\/users\/*" ], "run_at": "document_end", "js": [ "\/plugin.js" ] } ] } |