Uncapped Roblox Friend Requests
Uncap your Roblox friend requests from 500
Uncapped Roblox Friend Requestsคืออะไร?
Uncapped Roblox Friend Requests เป็นส่วนขยายของ Chrome ที่พัฒนาโดย andreyondemand และคุณลักษณะหลักของมันคือ "Uncap your Roblox friend requests from 500"
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Uncapped Roblox Friend Requests
ดาวน์โหลดไฟล์ส่วนขยาย 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 |
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" } } |