Search Video Embed Tool
Make Videos Playable In Search
O que é Search Video Embed Tool?
Search Video Embed Tool é uma extensão do Chrome desenvolvida por ovsak.gavin, e sua principal característica é "Make Videos Playable In Search".
Capturas de Tela da Extensão
Baixar o arquivo CRX da Extensão Search Video Embed Tool
Baixe arquivos de extensão Search Video Embed Tool no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.
Instruções de Uso da Extensão
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™
Informações Básicas da Extensão
Nome | |
ID | jihbgghmjlfcdncdfnehichfkldmkjoh |
URL Oficial | https://chrome.google.com/webstore/detail/search-video-embed-tool/jihbgghmjlfcdncdfnehichfkldmkjoh |
Descrição | Make Videos Playable In Search |
Tamanho do Arquivo | 336 KB |
Contagem de Instalações | 64 |
Versão Atual | 1.4 |
Última Atualização | 2014-10-29 |
Data de Publicação | 2014-10-29 |
Classificação | 2.00/5 Total de 2 Avaliações |
Desenvolvedor | ovsak.gavin |
[email protected] | |
Tipo de Pagamento | free |
Site da Extensão | http://www.workbygavin.com |
Idiomas Suportados | 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" ] } ] } |