Youtube New Layout

Gives you access to the new Youtube Layout.

Youtube New Layout là gì?

Youtube New Layout là một tiện ích mở rộng Chrome được phát triển bởi jesseizeboud, và tính năng chính của nó là "Gives you access to the new Youtube Layout.".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng Youtube New Layout

Tải xuống các tệp mở rộng Youtube New Layout dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

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

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Youtube New Layout Youtube New Layout
ID hbmeplfnmccnihlidhggppjkefakmepd
URL Chính Thức https://chrome.google.com/webstore/detail/youtube-new-layout/hbmeplfnmccnihlidhggppjkefakmepd
Mô tả Gives you access to the new Youtube Layout.
Kích Thước Tệp 92.49 KB
Số Lần Cài Đặt 496
Phiên Bản Hiện Tại 1.0
Cập Nhật Lần Cuối 2017-04-23
Ngày Phát Hành 2017-04-23
Đánh Giá 4.00/5 Tổng số 4 Đánh Giá
Nhà Phát Triển jesseizeboud
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ 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
}