Search Video Embed Tool

Make Videos Playable In Search

Search Video Embed Toolとは何ですか?

Search Video Embed Toolはovsak.gavinによって開発されたChromeの拡張機能で、その主な機能は「Make Videos Playable In Search」です。

拡張機能のスクリーンショット

screenshot
screenshot

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

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

拡張機能の使用方法

                        Not happy with how search pages like https://www.google.com/search?q=let+it+go make it look like a video is embedded but actually is just an image of the video? This extension replaces the image with an actual embed of the video referenced. Simple, to the point.

Check out the code here https://github.com/GavinOvsak/SearchVideoEmbed and let me know if you have any suggested code changes at [email protected]!

Made for Google Search™                    

拡張機能の基本情報

名前 Search Video Embed Tool Search Video Embed Tool
ID jihbgghmjlfcdncdfnehichfkldmkjoh
公式URL https://chrome.google.com/webstore/detail/search-video-embed-tool/jihbgghmjlfcdncdfnehichfkldmkjoh
説明 Make Videos Playable In Search
ファイルサイズ 336 KB
インストール数 64
現在のバージョン 1.4
最終更新日 2014-10-29
公開日 2014-10-29
評価 2.00/5 合計 2 レビュー
開発者 ovsak.gavin
Eメール [email protected]
支払い方法 free
拡張機能のウェブサイト http://www.workbygavin.com
対応言語 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Search Video Embed Tool",
    "description": "Make Videos Playable In Search",
    "manifest_version": 2,
    "version": "1.4",
    "icons": {
        "16": "play16.png",
        "48": "play48.png",
        "128": "play128.png"
    },
    "permissions": [
        "tabs"
    ],
    "content_scripts": [
        {
            "run_at": "document_end",
            "matches": [
                "https:\/\/www.google.com\/search*"
            ],
            "js": [
                "jquery-1.8.2.min.js",
                "myScript.js"
            ]
        }
    ]
}