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 مع الأصدقاء لتثبيت الامتدادات بسهولة.
تعليمات استخدام التمديد
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" ] } ] } |