Chatrandom Filter
Filter Chatrandom users by gender
Chatrandom Filterคืออะไร?
Chatrandom Filter เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Discord Notebook และคุณลักษณะหลักของมันคือ "Filter Chatrandom users by gender"
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Chatrandom Filter
ดาวน์โหลดไฟล์ส่วนขยาย Chatrandom Filter ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
Tired of pressing next all the time? Let us do it for you! The extension will automatically next the person if the gender they selected does not match the ones you choose. Also, you can now skip to the next person by pressing escape.
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | |
ID | nokhdmifgniahpkjgmcecledffigckmn |
URL อย่างเป็นทางการ | https://chrome.google.com/webstore/detail/chatrandom-filter/nokhdmifgniahpkjgmcecledffigckmn |
คำอธิบาย | Filter Chatrandom users by gender |
ขนาดไฟล์ | 71.16 KB |
จำนวนการติดตั้ง | 1,001 |
เวอร์ชันปัจจุบัน | 0.0.1 |
อัปเดตครั้งล่าสุด | 2020-12-06 |
วันที่เผยแพร่ | 2020-12-06 |
คะแนน | 5.00/5 รวมทั้งหมด 1 คะแนน |
ผู้พัฒนา | Discord Notebook |
อีเมล | [email protected] |
ประเภทการชำระเงิน | free |
ภาษาที่รองรับ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Chatrandom Filter", "version": "0.0.1", "manifest_version": 2, "description": "Filter Chatrandom users by gender", "icons": { "16": "icons\/icon16.png", "48": "icons\/icon48.png", "128": "icons\/icon128.png" }, "browser_action": { "default_icon": "icons\/icon128.png", "default_title": "Chatrandom Filter", "default_popup": "src\/browser_action\/browser_action.html" }, "permissions": [ "storage" ], "background": { "scripts": [ "src\/background\/background.js" ], "persistent": false }, "content_scripts": [ { "matches": [ "https:\/\/chatrandom.com\/*" ], "js": [ "src\/inject\/inject.js" ] } ] } |