Search Video Embed Tool
Make Videos Playable In Search
Search Video Embed Tool क्या है?
Search Video Embed Tool ovsak.gavin द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Make Videos Playable In Search"।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Search Video Embed Tool एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
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™
एक्सटेंशन की मूल जानकारी
नाम | |
ID | jihbgghmjlfcdncdfnehichfkldmkjoh |
आधिकारिक URL | https://chrome.google.com/webstore/detail/search-video-embed-tool/jihbgghmjlfcdncdfnehichfkldmkjoh |
विवरण | Make Videos Playable In Search |
फ़ाइल का आकार | 336 KB |
स्थापना संख्या | 64 |
वर्तमान संस्करण | 1.4 |
अंतिम अपडेट | 2014-10-29 |
प्रकाशन तिथि | 2014-10-29 |
रेटिंग | 2.00/5 कुल 2 रेटिंग्स |
डेवलपर | ovsak.gavin |
ईमेल | [email protected] |
भुगतान के प्रकार | free |
एक्सटेंशन वेबसाइट | http://www.workbygavin.com |
समर्थित भाषाएँ | 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" ] } ] } |