Better WCA Profile
Adds more stuff to your WCA profile!
Was ist Better WCA Profile?
Better WCA Profile ist eine Chrome-Erweiterung, die von Piotr Olszewski entwickelt wurde, und ihr Hauptmerkmal ist "Adds more stuff to your WCA profile!".
Erweiterungsscreenshots
Better WCA Profile-Erweiterungs-CRX-Datei herunterladen
Laden Sie Better WCA Profile-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
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)
Grundlegende Informationen zur Erweiterung
Name | Better WCA Profile |
ID | danpoknbopmfehihibdjipffjeagaelk |
Offizielle URL | https://chromewebstore.google.com/detail/better-wca-profile/danpoknbopmfehihibdjipffjeagaelk |
Beschreibung | Adds more stuff to your WCA profile! |
Dateigröße | 38.62 KB |
Installationsanzahl | 115 |
Aktuelle Version | 1.3 |
Letztes Update | 2024-02-05 |
Veröffentlichungsdatum | 2022-03-15 |
Bewertung | 5.00/5 Insgesamt 3 Bewertungen |
Entwickler | Piotr Olszewski |
[email protected] | |
Zahlungsart | free |
Unterstützte Sprachen | 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" ] } ] } |