Better WCA Profile
Adds more stuff to your WCA profile!
Vad är Better WCA Profile?
Better WCA Profile är en Chrome-tillägg utvecklad av Piotr Olszewski, och dess huvudfunktion är "Adds more stuff to your WCA profile!".
Tilläggsskärmbilder
Ladda ner Better WCA Profile-förlängningens CRX-fil
Ladda ner Better WCA Profile-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.
Användarmanual för Tillägg
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)
Grundläggande Information om Tillägg
Namn | Better WCA Profile |
ID | danpoknbopmfehihibdjipffjeagaelk |
Officiell webbadress | https://chromewebstore.google.com/detail/better-wca-profile/danpoknbopmfehihibdjipffjeagaelk |
Beskrivning | Adds more stuff to your WCA profile! |
Filstorlek | 38.62 KB |
Antal Installationer | 115 |
Aktuell Version | 1.3 |
Senast Uppdaterad | 2024-02-05 |
Publiceringsdatum | 2022-03-15 |
Betyg | 5.00/5 Totalt 3 Betyg |
Utvecklare | Piotr Olszewski |
E-post | [email protected] |
Betalningssätt | free |
Stödda Språk | 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" ] } ] } |