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
电子邮箱 [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"
            ]
        }
    ]
}