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
Eメール [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"
            ]
        }
    ]
}