Uncapped Roblox Friend Requests
Uncap your Roblox friend requests from 500
Qu'est-ce que Uncapped Roblox Friend Requests ?
Uncapped Roblox Friend Requests est une extension Chrome développée par andreyondemand, et sa fonction principale est "Uncap your Roblox friend requests from 500".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension Uncapped Roblox Friend Requests
Téléchargez les fichiers d'extension Uncapped Roblox Friend Requests au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.
Instructions d'Utilisation de l'Extension
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
Informations de Base sur l'Extension
Nom | Uncapped Roblox Friend Requests |
ID | hihkbdfimbnmecnfgeohiiipgjnaaogl |
URL Officiel | https://chromewebstore.google.com/detail/uncapped-roblox-friend-re/hihkbdfimbnmecnfgeohiiipgjnaaogl |
Description | Uncap your Roblox friend requests from 500 |
Taille du Fichier | 97.73 KB |
Nombre d'Installations | 111 |
Version Actuelle | 1.1 |
Dernière Mise à Jour | 2024-02-24 |
Date de Publication | 2023-08-28 |
Évaluation | 5.00/5 Total 1 Évaluations |
Développeur | andreyondemand |
[email protected] | |
Type de Paiement | free |
Langues Prises en Charge | 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" } } |