Search Video Embed Tool

Make Videos Playable In Search

Qu'est-ce que Search Video Embed Tool ?

Search Video Embed Tool est une extension Chrome développée par ovsak.gavin, et sa fonction principale est "Make Videos Playable In Search".

Captures d'Écran de l'Extension

screenshot
screenshot

Télécharger le fichier CRX de l'extension Search Video Embed Tool

Téléchargez les fichiers d'extension Search Video Embed Tool au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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™                    

Informations de Base sur l'Extension

Nom Search Video Embed Tool Search Video Embed Tool
ID jihbgghmjlfcdncdfnehichfkldmkjoh
URL Officiel https://chrome.google.com/webstore/detail/search-video-embed-tool/jihbgghmjlfcdncdfnehichfkldmkjoh
Description Make Videos Playable In Search
Taille du Fichier 336 KB
Nombre d'Installations 64
Version Actuelle 1.4
Dernière Mise à Jour 2014-10-29
Date de Publication 2014-10-29
Évaluation 2.00/5 Total 2 Évaluations
Développeur ovsak.gavin
Email [email protected]
Type de Paiement free
Site Web de l'Extension http://www.workbygavin.com
Langues Prises en Charge 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"
            ]
        }
    ]
}