Search Video Embed Tool

Make Videos Playable In Search

What is Search Video Embed Tool?

Search Video Embed Tool is a Chrome extension developed by ovsak.gavin, and its main feature is "Make Videos Playable In Search".

Extension Screenshots

screenshot
screenshot

Download Search Video Embed Tool Extension CRX File

Download Search Video Embed Tool extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        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™                    

Extension Basic Information

Name Search Video Embed Tool Search Video Embed Tool
ID jihbgghmjlfcdncdfnehichfkldmkjoh
Official URL https://chrome.google.com/webstore/detail/search-video-embed-tool/jihbgghmjlfcdncdfnehichfkldmkjoh
Description Make Videos Playable In Search
File Size 336 KB
Installation Count 64
Current Version 1.4
Last Updated 2014-10-29
Publish Date 2014-10-29
Rating 2.00/5 Total 2 Ratings
Developer ovsak.gavin
Email [email protected]
Payment Type free
Extension Website http://www.workbygavin.com
Supported Languages 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"
            ]
        }
    ]
}