Traversy Media - Official Extension

Improves the UX of the Traversy Media course platform

Vad är Traversy Media - Official Extension?

Traversy Media - Official Extension är en Chrome-tillägg utvecklad av bushblade, och dess huvudfunktion är "Improves the UX of the Traversy Media course platform".

Tilläggsskärmbilder

screenshot

Ladda ner Traversy Media - Official Extension-förlängningens CRX-fil

Ladda ner Traversy Media - Official Extension-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

                        This extension is for students of Brad Traversy.
It improves the UI of the course platform by scrolling the currently active lesson into view in the side menu and highlighting it. Making it easy for students to see what lesson they are on and which are the next and previous lessons.
Additionally it maximises the video to fill the available space in the viewport, improving the experience for those with larger monitors.
New feature added to persist the users video speed setting.                    

Grundläggande Information om Tillägg

Namn Traversy Media - Official Extension Traversy Media - Official Extension
ID nmddkphngjlkifpobgpcbfbmfmfpimam
Officiell webbadress https://chromewebstore.google.com/detail/traversy-media-official-e/nmddkphngjlkifpobgpcbfbmfmfpimam
Beskrivning Improves the UX of the Traversy Media course platform
Filstorlek 209 KB
Antal Installationer 263
Aktuell Version 1.2.3
Senast Uppdaterad 2024-02-23
Publiceringsdatum 2023-04-10
Betyg 5.00/5 Totalt 6 Betyg
Utvecklare bushblade
E-post [email protected]
Betalningssätt free
Tilläggswebbplats https://willadams.dev
Hjälpsida URL https://github.com/bushblade/TraversyMediaScrollActiveLesson
Stödda Språk en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Traversy Media - Official Extension",
    "version": "1.2.3",
    "description": "Improves the UX of the Traversy Media course platform",
    "icons": {
        "48": "logo-48.jpg"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.traversymedia.com\/products\/*"
            ],
            "js": [
                "index.js",
                "setSpeed.js"
            ]
        }
    ],
    "action": {
        "default_icon": "logo-48.jpg"
    }
}