Fit YT to Width

Fits a Youtube video to the width of its window when viewing in a narrow window, designed for using dual windows on a chromebook.

Fit YT to Widthคืออะไร?

Fit YT to Width เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Andrew Lansing และคุณลักษณะหลักของมันคือ "Fits a Youtube video to the width of its window when viewing in a narrow window, designed for using dual windows on a chromebook."

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

screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Fit YT to Width

ดาวน์โหลดไฟล์ส่วนขยาย Fit YT to Width ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        Tip: Chromebook users can make use of the alt + [ and alt + ] shortcuts to resize windows to fit half of your screen as seen in the screenshot                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ Fit YT to Width Fit YT to Width
ID ijigameikofpgbincaiclnjlifjfekpf
URL อย่างเป็นทางการ https://chrome.google.com/webstore/detail/fit-yt-to-width/ijigameikofpgbincaiclnjlifjfekpf
คำอธิบาย Fits a Youtube video to the width of its window when viewing in a narrow window, designed for using dual windows on a chromebook.
ขนาดไฟล์ 7.14 KB
จำนวนการติดตั้ง 167
เวอร์ชันปัจจุบัน 1.2
อัปเดตครั้งล่าสุด 2017-07-18
วันที่เผยแพร่ 2017-07-18
คะแนน 5.00/5 รวมทั้งหมด 1 คะแนน
ผู้พัฒนา Andrew Lansing
ประเภทการชำระเงิน free
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Fit YT to Width",
    "version": "1.2",
    "description": "Fits a Youtube video to the width of its window when viewing in a narrow window, designed for using dual windows on a chromebook.",
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": true
    },
    "page_action": {
        "default_icon": "icon.png",
        "default_title": "Fit YT to Witdh"
    },
    "content_scripts": [
        {
            "css": [
                "styles.css"
            ],
            "matches": [
                "https:\/\/www.youtube.com\/*"
            ]
        }
    ],
    "permissions": [
        "declarativeContent",
        "https:\/\/www.youtube.com\/*",
        "tabs"
    ],
    "manifest_version": 2
}