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