Search Video Embed Tool
Make Videos Playable In Search
Co to jest Search Video Embed Tool?
Search Video Embed Tool to rozszerzenie Chrome opracowane przez ovsak.gavin, a jego główną funkcją jest „Make Videos Playable In Search”.
Zrzuty ekranu rozszerzenia
Pobierz plik CRX rozszerzenia Search Video Embed Tool
Pobierz pliki rozszerzeń Search Video Embed Tool w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.
Instrukcja Użytkowania Rozszerzenia
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™
Podstawowe informacje o rozszerzeniu
Nazwa | |
ID | jihbgghmjlfcdncdfnehichfkldmkjoh |
Oficjalny URL | https://chrome.google.com/webstore/detail/search-video-embed-tool/jihbgghmjlfcdncdfnehichfkldmkjoh |
Opis | Make Videos Playable In Search |
Rozmiar pliku | 336 KB |
Liczba instalacji | 64 |
Aktualna Wersja | 1.4 |
Ostatnia Aktualizacja | 2014-10-29 |
Data Publikacji | 2014-10-29 |
Ocena | 2.00/5 Łącznie 2 Oceny |
Deweloper | ovsak.gavin |
[email protected] | |
Typ Płatności | free |
Strona Rozszerzenia | http://www.workbygavin.com |
Obsługiwane Języki | 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" ] } ] } |