Youtube New Layout

Gives you access to the new Youtube Layout.

Youtube New Layoutคืออะไร?

Youtube New Layout เป็นส่วนขยายของ Chrome ที่พัฒนาโดย jesseizeboud และคุณลักษณะหลักของมันคือ "Gives you access to the new Youtube Layout."

ภาพหน้าจอของส่วนขยาย

screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Youtube New Layout

ดาวน์โหลดไฟล์ส่วนขยาย 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
}