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是由Andrew Lansing開發的Chrome擴展程式,該擴展的主要功能是“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

下載Fit YT to Width擴展crx文件

下載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
官方網址 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
}