Better WCA Profile
Adds more stuff to your WCA profile!
Apa itu Better WCA Profile?
Better WCA Profile adalah ekstensi Chrome yang dikembangkan oleh Piotr Olszewski, dan fitur utamanya adalah "Adds more stuff to your WCA profile!".
Screenshot Ekstensi
Unduh Berkas CRX Ekstensi Better WCA Profile
Unduh file ekstensi Better WCA Profile dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.
Petunjuk Penggunaan Ekstensi
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)
Informasi Dasar Ekstensi
Nama | Better WCA Profile |
ID | danpoknbopmfehihibdjipffjeagaelk |
URL Resmi | https://chromewebstore.google.com/detail/better-wca-profile/danpoknbopmfehihibdjipffjeagaelk |
Deskripsi | Adds more stuff to your WCA profile! |
Ukuran File | 38.62 KB |
Jumlah Instalasi | 115 |
Versi Saat Ini | 1.3 |
Terakhir Diperbarui | 2024-02-05 |
Tanggal Publikasi | 2022-03-15 |
Penilaian | 5.00/5 Total 3 Penilaian |
Pengembang | Piotr Olszewski |
[email protected] | |
Tipe Pembayaran | free |
Bahasa yang Didukung | 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" ] } ] } |