Roblox Cancel Pending Requests
Allows you to cancel pending friend requests on Roblox
Roblox Cancel Pending Requestsคืออะไร?
Roblox Cancel Pending Requests เป็นส่วนขยายของ Chrome ที่พัฒนาโดย bg9 และคุณลักษณะหลักของมันคือ "Allows you to cancel pending friend requests on Roblox"
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Roblox Cancel Pending Requests
ดาวน์โหลดไฟล์ส่วนขยาย Roblox Cancel Pending Requests ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
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
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | Roblox Cancel Pending Requests |
ID | lcbammllahiomehmmgknajealgajchbp |
URL อย่างเป็นทางการ | https://chromewebstore.google.com/detail/roblox-cancel-pending-req/lcbammllahiomehmmgknajealgajchbp |
คำอธิบาย | Allows you to cancel pending friend requests on Roblox |
ขนาดไฟล์ | 50.56 KB |
จำนวนการติดตั้ง | 19,808 |
เวอร์ชันปัจจุบัน | 1.0 |
อัปเดตครั้งล่าสุด | 2023-06-10 |
วันที่เผยแพร่ | 2021-05-27 |
คะแนน | 4.31/5 รวมทั้งหมด 35 คะแนน |
ผู้พัฒนา | bg9 |
อีเมล | [email protected] |
ประเภทการชำระเงิน | free |
ภาษาที่รองรับ | 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" ] } ] } |