Better DeepRoute.com

Simple extension that improves usability of DeepRoute.com. Things it currently does: -Sorts "Free Agent Watch" and "Current…

Τι είναι το Better DeepRoute.com;

Το Better DeepRoute.com είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον Garrett.D.Foster, και η κύρια λειτουργία του είναι "Simple extension that improves usability of DeepRoute.com. Things it currently does: -Sorts "Free Agent Watch" and "Current…".

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

screenshot

Λήψη αρχείου CRX της επέκτασης Better DeepRoute.com

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

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

                        Simple extension that improves usability of DeepRoute.com.

Things it currently does:
-Sorts "Free Agent Watch" and "Current Offers" by position 1st and overall 2nd
-Changes player birthday to player age where possible (does not work on draft page currently)
-Fixed bug in FA where salary cap is reported incorrectly
-Adds buttong to generate a csv file of the game log file that can be analyzed outside of DeepRoute

==Changelog==
2019.09.05
-Fixed bug where game log couldn't be exported if it contained an "Amazing catch"
-removed dialog about csv taking a long time (since it doesn't)

2017.811
-removed undo roster cut feature as it has been built into the game

2017.803
-removed salary console embed feature (should be addedto deeproute soon)
-removed estimated rookie cost (already added deeproute)

2107.726.1
-fixed bug where conversion of gamelogs to csv would fail on 2pt conversions

2017.711
-removed trade modifications
-added gamelog2csv script

2017.7.4.1
-fixed bug were salary cap fix wouldn't update entire table on FA Watch

2017.7.4
-added script to replace incorrect FA salary-cap and dead-cap with correct salary-cap and dead-cap on "Free Agent" page

2017.7.3
-added ability to undo roster cuts without having to reload page (prior to submission)

2017.7.2.2
-fixed bug in 1st year cap hit calculation

2107.7.2.1
-fixed bug where draft pick cost would run on draft board page

2017.7.2
-added draft pick cost estimation

2017.6.28
-fixed bug where age wouldn't show up on certain individual player pages

2017.6.27.2
-fixed bug where player age would be NaN

2017.6.27.1
-fixed bug retrieving current year on individual player page

2017.6.27
-age shows on individual player page as well

2017.6.26.1
-added feature that changes player birthday to player age 

2017.6.26
-Changed sorting to only apply to "Free Agent Watch" and "Current Offers"

2017.6.25
-Initial extension                    

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

Όνομα Better DeepRoute.com Better DeepRoute.com
ID bmffochbhkjkfbnkmfflkofdoajemfdc
Επίσημο URL https://chromewebstore.google.com/detail/better-deeproutecom/bmffochbhkjkfbnkmfflkofdoajemfdc
Περιγραφή Simple extension that improves usability of DeepRoute.com. Things it currently does: -Sorts "Free Agent Watch" and "Current…
Μέγεθος Αρχείου 70.59 KB
Αριθμός Εγκαταστάσεων 15
Τρέχουσα Έκδοση 2019.09.05.1
Τελευταία Ενημέρωση 2019-09-05
Ημερομηνία Δημοσίευσης 2019-09-05
Αξιολόγηση 5.00/5 Συνολικά 1 Αξιολογήσεις
Προγραμματιστής Garrett.D.Foster
Ηλεκτρονικό ταχυδρομείο [email protected]
Τύπος Πληρωμής free
Υποστηριζόμενες Γλώσσες en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Better DeepRoute.com",
    "version": "2019.09.05.1",
    "content_scripts": [
        {
            "matches": [
                "http:\/\/deeproute.com\/*?js=rosters*",
                "http:\/\/deeproute.com\/*?js=freeagents*",
                "http:\/\/deeproute.com\/*?js=trades*"
            ],
            "js": [
                "jquery-3.2.1.min.js",
                "replace_bday_with_age.js"
            ]
        },
        {
            "matches": [
                "http:\/\/deeproute.com\/*?js=freeagents*&posilook=offer*",
                "http:\/\/deeproute.com\/*?js=freeagents*&fawatch=y*"
            ],
            "js": [
                "jquery-3.2.1.min.js",
                "sort_roster.js"
            ]
        },
        {
            "matches": [
                "http:\/\/deeproute.com\/*?js=oneplayer*"
            ],
            "js": [
                "jquery-3.2.1.min.js",
                "oneplayer.js"
            ]
        },
        {
            "matches": [
                "http:\/\/deeproute.com\/*?js=freeagents*"
            ],
            "js": [
                "jquery-3.2.1.min.js",
                "fix_FA_cap.js"
            ]
        },
        {
            "matches": [
                "http:\/\/deeproute.com\/*js=loggerinc*"
            ],
            "js": [
                "jquery-3.2.1.min.js",
                "log2csv.js"
            ]
        }
    ],
    "web_accessible_resources": [
        "trades.js"
    ]
}