BaseHit Enhancement Suite

Provides User Interface updates to basehit.com

Apa itu BaseHit Enhancement Suite?

BaseHit Enhancement Suite adalah ekstensi Chrome yang dikembangkan oleh ryan.c.d.johnson, dan fitur utamanya adalah "Provides User Interface updates to basehit.com".

Screenshot Ekstensi

screenshot
screenshot
screenshot
screenshot

Unduh Berkas CRX Ekstensi BaseHit Enhancement Suite

Unduh file ekstensi BaseHit Enhancement Suite dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.

Petunjuk Penggunaan Ekstensi

                        This extension provides user interface updates to pages on basehit.com.  Updates include 15 features that can be mixed and matched to provide a customized experience.

Features include:
* Add AAA and Low Minors Buttons -- Adds these buttons next to the normal Roster button on team pages, the user dashboard team menus, and the roster page's level select.
* Show / Hide Overall Ratings -- Choose whether or not to see overalls.
* Letter Grade Range Conversion -- Converts letter graded potential ratings into their equivalent range (e.g. A- => 85-89).
* Letter Grade Estimation Conversion -- Converts letter graded potential ratings into the average value of their equivalent range (e.g. A- => ≈87).
* Letter Grade Estimate Squiggle Removal -- Removes the "≈" generated by Letter Grade Estimations.
* Draft List Potential Restructure -- If your league has Individual Potentials turned on, then on the draft list, this moves potential ratings from the right to the actuals to beneath them for better readability.
* Fatigue Colors -- Adds coloration to the current endurance rating and player status description.
* Endurance Percentage Calculation -- Adds the percentage of EN remaining based on current and actual EN (Note: this is not equivalent to the pre-USB update fatigue percentage).
* Curve Letter Range Average -- Makes it so that a letter grade potential average is never less than the shown actual.
* Pre-USB Endurance Percentage Calculation -- Scales the optional Endurance Percentage to the -50-100% of basehit.com prior to the USB update.
* Show / Hide Player Status -- Lets you turn off the player Status column in tables.
* Compacted Tables -- Overall ratings are moved to one line, and table spacing is tightened up for less scrolling.
* Enhanced Rating Colors -- Uses the older more vibrant colors for ratings.
* Enhanced Forum Links -- Makes links on the forums stand out a bit more.
* Lazy Dark Mode -- Simple dark theme for basehit.com that inverts all colors.                    

Informasi Dasar Ekstensi

Nama BaseHit Enhancement Suite BaseHit Enhancement Suite
ID ofnoeaneiendndjennfkicpejnkmpold
URL Resmi https://chromewebstore.google.com/detail/basehit-enhancement-suite/ofnoeaneiendndjennfkicpejnkmpold
Deskripsi Provides User Interface updates to basehit.com
Ukuran File 62.96 KB
Jumlah Instalasi 72
Versi Saat Ini 2.3.5
Terakhir Diperbarui 2023-06-28
Tanggal Publikasi 2022-06-15
Penilaian 5.00/5 Total 4 Penilaian
Pengembang ryan.c.d.johnson
Email [email protected]
Tipe Pembayaran free
Bahasa yang Didukung en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "BaseHit Enhancement Suite",
    "description": "Provides User Interface updates to basehit.com",
    "version": "2.3.5",
    "manifest_version": 3,
    "background": {
        "service_worker": "background.js",
        "type": "module"
    },
    "permissions": [
        "storage",
        "tabs"
    ],
    "action": {
        "default_popup": "popup.html",
        "default_icon": {
            "96": "\/images\/icon-96x96.png"
        }
    },
    "icons": {
        "96": "\/images\/icon-96x96.png"
    },
    "web_accessible_resources": [
        {
            "matches": [
                "https:\/\/*.csfbl.com\/*",
                "https:\/\/*.basehit.com\/*"
            ],
            "resources": [
                "\/javascript\/utilities\/$q.js",
                "\/css\/compact-tables.css",
                "\/css\/overalls.css",
                "\/css\/restructure-draft-list.css",
                "\/css\/color-fatigue.css",
                "\/css\/color-ratings.css",
                "\/css\/unlettered.css",
                "\/css\/endurance-percentage.css",
                "\/css\/hide-endurance-status.css",
                "\/css\/enhanced-forum-links.css",
                "\/css\/indicate-sim-model.css",
                "\/css\/themes\/classic.css",
                "\/css\/themes\/lazy-dark-mode.css"
            ]
        }
    ],
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*.csfbl.com\/*",
                "https:\/\/*.basehit.com\/*"
            ],
            "js": [
                "ces.js"
            ],
            "css": [
                "ces.css"
            ]
        },
        {
            "matches": [
                "https:\/\/*.csfbl.com\/*",
                "https:\/\/*.basehit.com\/*"
            ],
            "js": [
                "theme.js"
            ],
            "run_at": "document_start"
        }
    ]
}