Search and Watch
Let you search on Youtube while a video is playing.
¿Qué es Search and Watch?
Search and Watch es una extensión de Chrome desarrollada por natkongg2, y su función principal es "Let you search on Youtube while a video is playing.".
Capturas de Pantalla de la Extensión
Descargar Archivo CRX de la Extensión Search and Watch
Descarga archivos de extensión Search and Watch en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.
Instrucciones de Uso de la Extensión
This chrome extension is a mobile-like YouTube application. If you search or just change page on YouTube, the video you're watching will be at the bottom to let you do both at the same time.
Información Básica de la Extensión
Nombre | Search and Watch |
ID | ljnmhiabegceemcenbabphfggdgmeoic |
URL Oficial | https://chrome.google.com/webstore/detail/search-and-watch/ljnmhiabegceemcenbabphfggdgmeoic |
Descripción | Let you search on Youtube while a video is playing. |
Tamaño del Archivo | 122 KB |
Cantidad de Instalaciones | 34 |
Versión Actual | 1.0 |
Última Actualización | 2016-03-05 |
Fecha de Publicación | 2016-03-05 |
Calificación | 5.00/5 Total de 1 Calificaciones |
Desarrollador | natkongg2 |
Tipo de Pago | free |
Idiomas Soportados | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Search and Watch", "short_name": "SNW", "version": "1.0", "manifest_version": 2, "description": "Let you search on Youtube while a video is playing.", "icons": { "16": "SNWIcon16.png", "48": "SNWIcon48.png", "128": "SNWIcon128.png" }, "permissions": [ "tabs", "https:\/\/www.youtube.com\/*", "storage" ], "browser_action": { "default_icon": "SNWIcon16.png", "default_popup": "popup.html", "default_title": "Activate\/Desactivate the minimized watching on Youtube." }, "content_scripts": [ { "matches": [ "https:\/\/www.youtube.com\/*" ], "js": [ "jquery-2.1.3.min.js", "SNWJS.js" ], "css": [ "SNWCSS.css" ] } ], "background": { "scripts": [ "background.js" ] }, "web_accessible_resources": [ "remove.png", "goto.png" ] } |