Traversy Media - Official Extension
Improves the UX of the Traversy Media course platform
Was ist Traversy Media - Official Extension?
Traversy Media - Official Extension ist eine Chrome-Erweiterung, die von bushblade entwickelt wurde, und ihr Hauptmerkmal ist "Improves the UX of the Traversy Media course platform".
Erweiterungsscreenshots
Traversy Media - Official Extension-Erweiterungs-CRX-Datei herunterladen
Laden Sie Traversy Media - Official Extension-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
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.
Grundlegende Informationen zur Erweiterung
Name | |
ID | nmddkphngjlkifpobgpcbfbmfmfpimam |
Offizielle URL | https://chromewebstore.google.com/detail/traversy-media-official-e/nmddkphngjlkifpobgpcbfbmfmfpimam |
Beschreibung | Improves the UX of the Traversy Media course platform |
Dateigröße | 209 KB |
Installationsanzahl | 263 |
Aktuelle Version | 1.2.3 |
Letztes Update | 2024-02-23 |
Veröffentlichungsdatum | 2023-04-10 |
Bewertung | 5.00/5 Insgesamt 6 Bewertungen |
Entwickler | bushblade |
[email protected] | |
Zahlungsart | free |
Erweiterungswebsite | https://willadams.dev |
Hilfeseite URL | https://github.com/bushblade/TraversyMediaScrollActiveLesson |
Unterstützte Sprachen | 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" } } |