Traversy Media - Official Extension

Improves the UX of the Traversy Media course platform

什麼是Traversy Media - Official Extension?

Traversy Media - Official Extension是由bushblade開發的Chrome擴展程式,該擴展的主要功能是“Improves the UX of the Traversy Media course platform”。

擴展截圖

screenshot

下載Traversy Media - Official Extension擴展crx文件

下載Traversy Media - Official Extension擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        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.                    

擴展基本資訊

名稱 Traversy Media - Official Extension Traversy Media - Official Extension
ID nmddkphngjlkifpobgpcbfbmfmfpimam
官方網址 https://chromewebstore.google.com/detail/traversy-media-official-e/nmddkphngjlkifpobgpcbfbmfmfpimam
簡介 Improves the UX of the Traversy Media course platform
檔案大小 209 KB
安裝次數 263
目前版本 1.2.3
更新時間 2024-02-23
上架時間 2023-04-10
評分 5.00/5 共 6 次評分
開發者 bushblade
電子郵箱 [email protected]
付費類型 free
擴展官網 https://willadams.dev
說明頁面URL https://github.com/bushblade/TraversyMediaScrollActiveLesson
支援的語言 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"
    }
}