Youtube Embed

This extension adds an additional button to the youtube player that toggles embedded mode.

Youtube Embedとは何ですか?

Youtube Embedはrosca.valentin2012によって開発されたChromeの拡張機能で、その主な機能は「This extension adds an additional button to the youtube player that toggles embedded mode.」です。

Youtube Embed拡張機能のCRXファイルをダウンロード

Youtube Embed拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。

拡張機能の使用方法

                        This extension adds an additional button to the youtube player that toggles embedded mode.                    

拡張機能の基本情報

名前 Youtube Embed Youtube Embed
ID hbeapjkbnlomlkplfchcobioeeockkpd
公式URL https://chrome.google.com/webstore/detail/youtube-embed/hbeapjkbnlomlkplfchcobioeeockkpd
説明 This extension adds an additional button to the youtube player that toggles embedded mode.
ファイルサイズ 44.96 KB
インストール数 151
現在のバージョン 1.1.2
最終更新日 2017-06-26
公開日 2017-06-26
評価 5.00/5 合計 4 レビュー
開発者 rosca.valentin2012
支払い方法 free
対応言語 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "version": "1.1.2",
    "name": "Youtube Embed",
    "author": "Valentin Rosca",
    "icons": {
        "16": "icon16.png",
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "content_scripts": [
        {
            "run_at": "document_end",
            "matches": [
                "https:\/\/www.youtube.com\/embed\/*",
                "https:\/\/www.youtube.com\/watch*"
            ],
            "js": [
                "jquery.min.js",
                "youtube_embed.js"
            ]
        }
    ],
    "permissions": [
        "storage"
    ],
    "background": {
        "scripts": [
            "background.js"
        ]
    }
}