Search Video Embed Tool
Make Videos Playable In Search
Cos'è Search Video Embed Tool?
Search Video Embed Tool è un'estensione di Chrome sviluppata da ovsak.gavin, e la sua funzione principale è "Make Videos Playable In Search".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione Search Video Embed Tool
Scarica i file di estensione Search Video Embed Tool in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
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™
Informazioni di Base sull'Estensione
Nome | |
ID | jihbgghmjlfcdncdfnehichfkldmkjoh |
URL Ufficiale | https://chrome.google.com/webstore/detail/search-video-embed-tool/jihbgghmjlfcdncdfnehichfkldmkjoh |
Descrizione | Make Videos Playable In Search |
Dimensione del File | 336 KB |
Conteggio Installazioni | 64 |
Versione Corrente | 1.4 |
Ultimo Aggiornamento | 2014-10-29 |
Data di Pubblicazione | 2014-10-29 |
Valutazione | 2.00/5 Totale 2 Valutazioni |
Sviluppatore | ovsak.gavin |
[email protected] | |
Tipo di Pagamento | free |
Sito Web dell'Estensione | http://www.workbygavin.com |
Lingue Supportate | 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" ] } ] } |