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
官方URL 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
}