Uncapped Roblox Friend Requests

Uncap your Roblox friend requests from 500

Uncapped Roblox Friend Requests क्या है?

Uncapped Roblox Friend Requests andreyondemand द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Uncap your Roblox friend requests from 500"।

एक्सटेंशन स्क्रीनशॉट्स

screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Uncapped Roblox Friend Requests एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        This extension uncaps your Roblox friend requests from 500.

Not recommended to those who may have an extensive friend request list (50,000+) as it may slow down. (untested)

Like what I'm doing?
Review the extension!

How does this work?
The extension will call the Roblox API and get 100 friend requests. It will then continue calling the Roblox API until all of the lists of friend requests are grabbed.

Why can't it just call the Roblox API once?
The Roblox API caps out the list per API call to 100. To get around this, the extension will get the next list, and continue to call the API until all the pages are called.

This project is open source.
https://github.com/AndreyOnDemand/uncapped-friend-requests-roblox                    

एक्सटेंशन की मूल जानकारी

नाम Uncapped Roblox Friend Requests Uncapped Roblox Friend Requests
ID hihkbdfimbnmecnfgeohiiipgjnaaogl
आधिकारिक URL https://chromewebstore.google.com/detail/uncapped-roblox-friend-re/hihkbdfimbnmecnfgeohiiipgjnaaogl
विवरण Uncap your Roblox friend requests from 500
फ़ाइल का आकार 97.73 KB
स्थापना संख्या 111
वर्तमान संस्करण 1.1
अंतिम अपडेट 2024-02-24
प्रकाशन तिथि 2023-08-28
रेटिंग 5.00/5 कुल 1 रेटिंग्स
डेवलपर andreyondemand
ईमेल [email protected]
भुगतान के प्रकार free
समर्थित भाषाएँ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Uncapped Roblox Friend Requests",
    "description": "Uncap your Roblox friend requests from 500",
    "version": "1.1",
    "icons": {
        "16": "images\/icon-16.png",
        "32": "images\/icon-32.png",
        "48": "images\/icon-48.png",
        "128": "images\/icon-128.png"
    },
    "permissions": [
        "cookies"
    ],
    "host_permissions": [
        "*:\/\/*.roblox.com\/*"
    ],
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.roblox.com\/*"
            ],
            "js": [
                "main.js"
            ]
        }
    ],
    "background": {
        "service_worker": "background.js"
    }
}