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
官方網址 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
電子郵箱 [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"
            ]
        }
    ]
}