Roblox Cancel Pending Requests

Allows you to cancel pending friend requests on Roblox

Co to jest Roblox Cancel Pending Requests?

Roblox Cancel Pending Requests to rozszerzenie Chrome opracowane przez bg9, a jego główną funkcją jest „Allows you to cancel pending friend requests on Roblox”.

Zrzuty ekranu rozszerzenia

screenshot

Pobierz plik CRX rozszerzenia Roblox Cancel Pending Requests

Pobierz pliki rozszerzeń Roblox Cancel Pending Requests w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        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                    

Podstawowe informacje o rozszerzeniu

Nazwa Roblox Cancel Pending Requests Roblox Cancel Pending Requests
ID lcbammllahiomehmmgknajealgajchbp
Oficjalny URL https://chromewebstore.google.com/detail/roblox-cancel-pending-req/lcbammllahiomehmmgknajealgajchbp
Opis Allows you to cancel pending friend requests on Roblox
Rozmiar pliku 50.56 KB
Liczba instalacji 19,808
Aktualna Wersja 1.0
Ostatnia Aktualizacja 2023-06-10
Data Publikacji 2021-05-27
Ocena 4.31/5 Łącznie 35 Oceny
Deweloper bg9
E-mail [email protected]
Typ Płatności free
Obsługiwane Języki 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"
            ]
        }
    ]
}