Search Video Embed Tool

Make Videos Playable In Search

Что такое Search Video Embed Tool?

Search Video Embed Tool - это расширение Chrome, разработанное ovsak.gavin, и его основная функция - "Make Videos Playable In Search".

Снимки экрана расширения

screenshot
screenshot

Скачать файл CRX расширения Search Video Embed Tool

Скачайте файлы расширений 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"
            ]
        }
    ]
}