YouTube Zoomer

Easily zoom on YouTube videos, with a simple scroll

什么是YouTube Zoomer?

YouTube Zoomer是由teyzer18开发的Chrome扩展程序,该扩展的主要功能是“Easily zoom on YouTube videos, with a simple scroll”。

扩展截图

screenshot
screenshot
screenshot

下载YouTube Zoomer扩展crx文件

下载YouTube Zoomer扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        With this extension, you can easily zoom on YouTube videos. It can be useful to seek for something particular in a video, something you have some difficulties to see, or to resize the format of the theater mode.                    

扩展基本信息

名称 YouTube Zoomer YouTube Zoomer
ID bgdkkdnidmmakdgebkgaeijbfkhieejn
官方URL https://chromewebstore.google.com/detail/youtube-zoomer/bgdkkdnidmmakdgebkgaeijbfkhieejn
简介 Easily zoom on YouTube videos, with a simple scroll
文件大小 13.8 KB
安装次数 1,623
当前版本 1.0
更新时间 2020-08-23
上架时间 2020-08-23
评分 3.05/5 共20次评分
开发者 teyzer18
电子邮箱 [email protected]
付费类型 free
支持的语言 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "version": "1.0",
    "name": "YouTube Zoomer",
    "description": "Easily zoom on YouTube videos, with a simple scroll",
    "background": {
        "persistent": false,
        "scripts": [
            "background\/background.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.youtube.com\/*"
            ],
            "js": [
                "content\/injection.js"
            ]
        }
    ],
    "browser_action": {
        "default_popup": "popup\/popup.html",
        "default_icon": "icons\/icon.png"
    },
    "permissions": [
        "storage",
        "activeTab",
        "*:\/\/*.youtube.com\/*",
        "background"
    ]
}