YouTube Everywhere

Lets YouTube videos play on any page with a YouTube Link

什么是YouTube Everywhere?

YouTube Everywhere是由Jared Frank开发的Chrome扩展程序,该扩展的主要功能是“Lets YouTube videos play on any page with a YouTube Link”。

扩展截图

screenshot

下载YouTube Everywhere扩展crx文件

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

扩展使用说明

                        YouTube Everywhere adds small YouTube icons next YouTube links on any page. Clicking the icon will expand a small YouTube player to be able to watch the video without having to change pages or open a new tab!                    

扩展基本信息

名称 YouTube Everywhere YouTube Everywhere
ID aabngppaojjlinklfhfgdlofeddimohg
官方URL https://chrome.google.com/webstore/detail/youtube-everywhere/aabngppaojjlinklfhfgdlofeddimohg
简介 Lets YouTube videos play on any page with a YouTube Link
文件大小 104 KB
安装次数 1,000
当前版本 1.3.3
更新时间 2015-08-12
上架时间 2015-08-12
评分 3.93/5 共30次评分
开发者 Jared Frank
电子邮箱 [email protected]
付费类型 free
支持的语言 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "YouTube Everywhere",
    "description": "Lets YouTube videos play on any page with a YouTube Link",
    "version": "1.3.3",
    "icons": {
        "16": "img\/ytlogo128.png",
        "48": "img\/ytlogo128.png",
        "128": "img\/ytlogo128.png"
    },
    "background": {
        "scripts": [
            "main.js"
        ],
        "persistent": false
    },
    "web_accessible_resources": [
        "img\/youtube.png"
    ],
    "permissions": [
        "tabs"
    ],
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "exclude_matches": [
                "*:\/\/www.youtube.com\/*",
                "*:\/\/www.reddit.com\/",
                "*:\/\/www.reddit.com\/?*"
            ],
            "run_at": "document_end",
            "css": [
                "style.css"
            ],
            "js": [
                "jquery.min.js",
                "main.js"
            ]
        }
    ]
}