Uncapped Roblox Friend Requests
Uncap your Roblox friend requests from 500
什麼是Uncapped Roblox Friend Requests?
Uncapped Roblox Friend Requests是由andreyondemand開發的Chrome擴展程式,該擴展的主要功能是“Uncap your Roblox friend requests from 500”。
擴展截圖
下載Uncapped Roblox Friend Requests擴展crx文件
下載Uncapped Roblox Friend Requests擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
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 |
ID | hihkbdfimbnmecnfgeohiiipgjnaaogl |
官方網址 | 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" } } |