Better WCA Profile
Adds more stuff to your WCA profile!
Cos'è Better WCA Profile?
Better WCA Profile è un'estensione di Chrome sviluppata da Piotr Olszewski, e la sua funzione principale è "Adds more stuff to your WCA profile!".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione Better WCA Profile
Scarica i file di estensione Better WCA Profile in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
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)
Informazioni di Base sull'Estensione
Nome | Better WCA Profile |
ID | danpoknbopmfehihibdjipffjeagaelk |
URL Ufficiale | https://chromewebstore.google.com/detail/better-wca-profile/danpoknbopmfehihibdjipffjeagaelk |
Descrizione | Adds more stuff to your WCA profile! |
Dimensione del File | 38.62 KB |
Conteggio Installazioni | 115 |
Versione Corrente | 1.3 |
Ultimo Aggiornamento | 2024-02-05 |
Data di Pubblicazione | 2022-03-15 |
Valutazione | 5.00/5 Totale 3 Valutazioni |
Sviluppatore | Piotr Olszewski |
[email protected] | |
Tipo di Pagamento | free |
Lingue Supportate | 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" ] } ] } |