Better WCA Profile
Adds more stuff to your WCA profile!
Better WCA Profileคืออะไร?
Better WCA Profile เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Piotr Olszewski และคุณลักษณะหลักของมันคือ "Adds more stuff to your WCA profile!"
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Better WCA Profile
ดาวน์โหลดไฟล์ส่วนขยาย Better WCA Profile ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
Additions to your WCA profile include: - Rolling averages - Comparing yourself to others (visit their profile if you're logged on) - Age of PR's (hover over them)
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | Better WCA Profile |
ID | danpoknbopmfehihibdjipffjeagaelk |
URL อย่างเป็นทางการ | https://chromewebstore.google.com/detail/better-wca-profile/danpoknbopmfehihibdjipffjeagaelk |
คำอธิบาย | Adds more stuff to your WCA profile! |
ขนาดไฟล์ | 38.62 KB |
จำนวนการติดตั้ง | 115 |
เวอร์ชันปัจจุบัน | 1.3 |
อัปเดตครั้งล่าสุด | 2024-02-05 |
วันที่เผยแพร่ | 2022-03-15 |
คะแนน | 5.00/5 รวมทั้งหมด 3 คะแนน |
ผู้พัฒนา | Piotr Olszewski |
อีเมล | [email protected] |
ประเภทการชำระเงิน | free |
ภาษาที่รองรับ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Better WCA Profile", "version": "1.3", "description": "Adds more stuff to your WCA profile!", "manifest_version": 3, "permissions": [], "content_scripts": [ { "matches": [ "https:\/\/www.worldcubeassociation.org\/persons\/*", "http:\/\/www.worldcubeassociation.org\/persons\/*" ], "run_at": "document_end", "js": [ "jquery.js", "online_detector.js" ] }, { "matches": [ "https:\/\/www.worldcubeassociation.org\/persons\/*", "http:\/\/www.worldcubeassociation.org\/persons\/*" ], "run_at": "document_end", "js": [ "jquery.js", "rolling_averages.js" ] }, { "matches": [ "https:\/\/www.worldcubeassociation.org\/persons\/*", "http:\/\/www.worldcubeassociation.org\/persons\/*" ], "run_at": "document_end", "js": [ "jquery.js", "age_of_pbs.js" ] } ] } |