Search Video Embed Tool
Make Videos Playable In Search
ما هو Search Video Embed Tool؟
Search Video Embed Tool هو إضافة Chrome تم تطويرها بواسطة ovsak.gavin، والميزة الرئيسية لها هي "Make Videos Playable In Search".
لقطات شاشة التمديد
تحميل ملف CRX للإضافة Search Video Embed Tool
قم بتنزيل ملفات الامتداد Search Video Embed Tool بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات 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" ] } ] } |