YouTubeHover

A Chrome Extension that allows you to preview videos when you hover on their thumbnails on YouTube.

什么是YouTubeHover?

YouTubeHover是由Sukrit Chhabra开发的Chrome扩展程序,该扩展的主要功能是“A Chrome Extension that allows you to preview videos when you hover on their thumbnails on YouTube.”。

扩展截图

screenshot
screenshot
screenshot

下载YouTubeHover扩展crx文件

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

扩展使用说明

                        You can preview videos by hovering on their thumbnails. You can choose the settings that work best for you from the options page.

Note: The extension does not collect any user data (browsing or otherwise) from youtube.com.

Please be sure to leave a review or any feedback you have :)                    

扩展基本信息

名称 YouTubeHover YouTubeHover
ID ojbkdiobfdncjfbcmolchhkmcnmhobog
官方URL https://chrome.google.com/webstore/detail/youtubehover/ojbkdiobfdncjfbcmolchhkmcnmhobog
简介 A Chrome Extension that allows you to preview videos when you hover on their thumbnails on YouTube.
文件大小 8.63 MB
安装次数 479
当前版本 0.1.12
更新时间 2018-02-27
上架时间 2018-02-27
评分 3.91/5 共23次评分
开发者 Sukrit Chhabra
付费类型 free
扩展官网 https://github.com/sukritchhabra/YouTubeHover
帮助页面URL https://github.com/sukritchhabra/YouTubeHover/issues
支持的语言 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "YouTubeHover",
    "description": "A Chrome Extension that allows you to preview videos when you hover on their thumbnails on YouTube.",
    "version": "0.1.12",
    "author": "Sukrit Chhabra",
    "browser_action": {
        "default_icon": "imgs\/touch\/icon_96.png",
        "default_title": "YouTubeHover"
    },
    "options_ui": {
        "page": "options\/options.html",
        "chrome_style": true,
        "open_in_tab": true
    },
    "permissions": [
        "storage",
        "notifications"
    ],
    "background": {
        "scripts": [
            "analytics.js",
            "background.js"
        ]
    },
    "content_scripts": [
        {
            "js": [
                "bower_components\/jquery\/dist\/jquery.min.js",
                "iframe_api.js",
                "widgetAPI.js",
                "options\/defaultSettings.js",
                "content.js",
                "controllers\/controllers.min.js"
            ],
            "matches": [
                "https:\/\/*.youtube.com\/*"
            ]
        }
    ],
    "content_security_policy": "script-src 'self' 'unsafe-eval' https:\/\/ssl.google-analytics.com https:\/\/s.ytimg.com\/; object-src 'self'"
}