belugaboard - Club Stats for all
Enhanced club stats, by belugabrain
Τι είναι το belugaboard - Club Stats for all;
Το belugaboard - Club Stats for all είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον belugabrain, και η κύρια λειτουργία του είναι "Enhanced club stats, by belugabrain".
Στιγμιότυπα Επέκτασης
Λήψη αρχείου CRX της επέκτασης belugaboard - Club Stats for all
Λήψη αρχείων επέκτασης belugaboard - Club Stats for all σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.
Οδηγίες Χρήσης της Επέκτασης
An extension to allow Strava Club leaderboards to show activities other than rides, runs or swims. The new leaderboard can be seen on the 'Recent activity' tab of the Club page. V2.8 Responded to latest Strava DOM changes, and excluded private activites from totals. V2.7 Responded to yet another Strava DOM change, which prevented athlete avatars from being displayed. V2.6 Further updates, to address the March(?) 2023 Strava site changes (updated style names), which resulted in no activities being shown. V2.5 Further updates, to address the July 2022 Strava site changes, which resulted in no activities being shown. V2.4 Further updates to address the April 2022 Strava site changes, which resulted in no activities being shown. V2.3 Now extracts the distance correctly, for workouts (which have the distance in a different column to runs/rides/walks). V2.2 Further updates to address more Strava site changes, which resulted in no distances being found. V2.1 An update to address further Strava site changes, which resulted in all distances being shown as zero. V2.0 An update to the Strava site, which rolled out sometime over the past few days, broke the belugaboard extension, due to restructuring of the underlying HTML (this restructuring wasn't immediately obvious if you were just browsing the page) The way that the activity 'icons' (bike. running shoe, etc) are displayed, was also changed, in a fundamental way, with "Rowing" now being display as "WaterSports", requiring further code changes to the extension.
Normal service is resumed 🤞 V1.2 Now supports paging of results, to deal with clubs that have many members. Ten entries are displayed per page V1.3 Allows filtering of activities, to concentrate on the specific activities of your club
Βασικές Πληροφορίες Επέκτασης
Όνομα | belugaboard - Club Stats for all |
ID | gjbnpkedgfnejfghlmogdjmahnokkhea |
Επίσημο URL | https://chromewebstore.google.com/detail/belugaboard-club-stats-fo/gjbnpkedgfnejfghlmogdjmahnokkhea |
Περιγραφή | Enhanced club stats, by belugabrain |
Μέγεθος Αρχείου | 1.9 MB |
Αριθμός Εγκαταστάσεων | 25 |
Τρέχουσα Έκδοση | 2.8 |
Τελευταία Ενημέρωση | 2023-09-09 |
Ημερομηνία Δημοσίευσης | 2021-05-24 |
Αξιολόγηση | 1.00/5 Συνολικά 1 Αξιολογήσεις |
Προγραμματιστής | belugabrain |
Ηλεκτρονικό ταχυδρομείο | [email protected] |
Τύπος Πληρωμής | free |
Υποστηριζόμενες Γλώσσες | en-GB |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "belugaboard - Club Stats for all", "description": "Enhanced club stats, by belugabrain", "version": "2.8", "manifest_version": 3, "background": { "service_worker": "background.js" }, "content_scripts": [ { "js": [ "third-party\/jquery-3.6.0.js", "third-party\/jquery-ui-1.12.1.js", "js\/common.js", "js\/content_script.js" ], "css": [ "css\/style.css", "third-party\/fa\/css\/all.css" ], "run_at": "document_idle", "matches": [ "https:\/\/*.strava.com\/*" ] } ], "web_accessible_resources": [ { "resources": [ "mainpanel.html", "\/images\/bb32.png", "\/images\/bb48.png", "\/images\/bb128.png", "\/images\/busybeluga.gif", "third-party\/fa\/webfonts\/*" ], "matches": [ "https:\/\/*.strava.com\/*" ] } ], "permissions": [ "storage", "activeTab", "scripting" ], "icons": { "16": "\/images\/bb16.png", "32": "\/images\/bb32.png", "48": "\/images\/bb48.png", "128": "\/images\/bb128.png" }, "options_page": "options.html" } |