Search Video Embed Tool
Make Videos Playable In Search
Wat is Search Video Embed Tool?
Search Video Embed Tool is een Chrome-extensie ontwikkeld door ovsak.gavin, en de belangrijkste functie is "Make Videos Playable In Search".
Extensie Screenshots
Download het CRX-bestand van de extensie Search Video Embed Tool
Download Search Video Embed Tool-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.
Instructies voor het Gebruik van de Extensie
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™
Basisinformatie over de Extensie
Naam | |
ID | jihbgghmjlfcdncdfnehichfkldmkjoh |
Officiële URL | https://chrome.google.com/webstore/detail/search-video-embed-tool/jihbgghmjlfcdncdfnehichfkldmkjoh |
Beschrijving | Make Videos Playable In Search |
Bestandsgrootte | 336 KB |
Aantal Installaties | 64 |
Huidige Versie | 1.4 |
Laatst Bijgewerkt | 2014-10-29 |
Publicatiedatum | 2014-10-29 |
Beoordeling | 2.00/5 Totaal 2 Beoordelingen |
Ontwikkelaar | ovsak.gavin |
[email protected] | |
Betalingswijze | free |
Extensiewebsite | http://www.workbygavin.com |
Ondersteunde Talen | 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" ] } ] } |