iRacing Enhanced Profile

Presents enhanced stats for the iRacing service.

Τι είναι το iRacing Enhanced Profile;

Το iRacing Enhanced Profile είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον Stacy Dunegan, και η κύρια λειτουργία του είναι "Presents enhanced stats for the iRacing service.".

Στιγμιότυπα Επέκτασης

screenshot

Λήψη αρχείου CRX της επέκτασης iRacing Enhanced Profile

Λήψη αρχείων επέκτασης iRacing Enhanced Profile σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.

Οδηγίες Χρήσης της Επέκτασης

                        Changelog:
Version 1.9 (3/29/2021)
  Setting dynamic width for the track column to fix an issue with the table being to wide

Version 1.8 (5/29/2020)
  Made a performance change that should allow the "last 10" results in a more efficient manner while looking at the profile. This should improve some users experience.

Version 1.7 (4/27/2020)
  iRacing changed the way it loads data on users profiles. Due to this I needed to increase the timeout of the element search to get the needed data.

Version 1.6 (1/26/2020)
  Highlight "friends" when viewing the results of an event.

Version 1.5 (12/27/2019)
  Some users were still not able to see their "last 10" results when loading "My Profile". This should address this issue. 

Version 1.4 (12/13/2019)
  Due to an encoding conflict, now we get data based on custid. This should resolve the issue with some users not being able to see the "last10" results.

Version 1.3 (12/13/2019)
  While viewing the results of an event, your name will be highlighted

Version 1.2 (12/10/2019)
  Adding static width (180px) to the trackname column. This should improve the way the table is presented after loading the data.

Version 1.1 (11/23/2019)
  Enforce a width of 30px on the iRating and Safety Rating cells

Version 1.0 (11/20/2019)
  Show iRating and Safety Rating change for the last ten races on the profiles page for that user.                    

Βασικές Πληροφορίες Επέκτασης

Όνομα iRacing Enhanced Profile iRacing Enhanced Profile
ID pnhidflnpgkbpiohgbokdcbmhleiinfi
Επίσημο URL https://chrome.google.com/webstore/detail/iracing-enhanced-profile/pnhidflnpgkbpiohgbokdcbmhleiinfi
Περιγραφή Presents enhanced stats for the iRacing service.
Μέγεθος Αρχείου 96.22 KB
Αριθμός Εγκαταστάσεων 1,000
Τρέχουσα Έκδοση 1.9
Τελευταία Ενημέρωση 2021-03-29
Ημερομηνία Δημοσίευσης 2020-05-30
Αξιολόγηση 5.00/5 Συνολικά 8 Αξιολογήσεις
Προγραμματιστής Stacy Dunegan
Ηλεκτρονικό ταχυδρομείο [email protected]
Τύπος Πληρωμής free
Υποστηριζόμενες Γλώσσες en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "iRacing Enhanced Profile",
    "version": "1.9",
    "description": "Presents enhanced stats for the iRacing service.",
    "permissions": [
        "activeTab"
    ],
    "icons": {
        "128": "icon.png"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/members.iracing.com\/membersite\/member\/CareerStats.do*"
            ],
            "js": [
                "jquery-3.4.1.js",
                "getStats.js"
            ]
        },
        {
            "matches": [
                "*:\/\/members.iracing.com\/membersite\/member\/EventResult.do*"
            ],
            "js": [
                "jquery-3.4.1.js",
                "results.js"
            ]
        }
    ]
}