Youtube New Layout

Gives you access to the new Youtube Layout.

什麼是Youtube New Layout?

Youtube New Layout是由jesseizeboud開發的Chrome擴展程式,該擴展的主要功能是“Gives you access to the new Youtube Layout.”。

擴展截圖

screenshot
screenshot

下載Youtube New Layout擴展crx文件

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

擴展使用說明

                        Places a cookie in your browser to get access to the new Youtube New Layout.
Including Dark Mode                    

擴展基本資訊

名稱 Youtube New Layout Youtube New Layout
ID hbmeplfnmccnihlidhggppjkefakmepd
官方網址 https://chrome.google.com/webstore/detail/youtube-new-layout/hbmeplfnmccnihlidhggppjkefakmepd
簡介 Gives you access to the new Youtube Layout.
檔案大小 92.49 KB
安裝次數 496
目前版本 1.0
更新時間 2017-04-23
上架時間 2017-04-23
評分 4.00/5 共 4 次評分
開發者 jesseizeboud
付費類型 free
支援的語言 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Youtube New Layout",
    "version": "1.0",
    "description": "Gives you access to the new Youtube Layout.",
    "browser_action": {
        "default_icon": "icon-128.png"
    },
    "permissions": [
        "activeTab",
        "tabs",
        "storage",
        "https:\/\/*\/*",
        "http:\/\/*\/*"
    ],
    "background": {
        "scripts": [
            "bg.js"
        ]
    },
    "content_scripts": [
        {
            "run_at": "document_end",
            "matches": [
                "https:\/\/www.youtube.com\/*"
            ],
            "js": [
                "inject.js"
            ]
        },
        {
            "run_at": "document_end",
            "matches": [
                "https:\/\/youtube.com\/*"
            ],
            "js": [
                "inject.js"
            ]
        },
        {
            "run_at": "document_end",
            "matches": [
                "http:\/\/youtube.com\/*"
            ],
            "js": [
                "inject.js"
            ]
        },
        {
            "run_at": "document_end",
            "matches": [
                "https:\/\/youtube.com\/*"
            ],
            "js": [
                "inject.js"
            ]
        }
    ],
    "manifest_version": 2
}