Search and Watch
Let you search on Youtube while a video is playing.
Qu'est-ce que Search and Watch ?
Search and Watch est une extension Chrome développée par natkongg2, et sa fonction principale est "Let you search on Youtube while a video is playing.".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension Search and Watch
Téléchargez les fichiers d'extension Search and Watch au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.
Instructions d'Utilisation de l'Extension
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.
Informations de Base sur l'Extension
Nom | Search and Watch |
ID | ljnmhiabegceemcenbabphfggdgmeoic |
URL Officiel | https://chrome.google.com/webstore/detail/search-and-watch/ljnmhiabegceemcenbabphfggdgmeoic |
Description | Let you search on Youtube while a video is playing. |
Taille du Fichier | 122 KB |
Nombre d'Installations | 34 |
Version Actuelle | 1.0 |
Dernière Mise à Jour | 2016-03-05 |
Date de Publication | 2016-03-05 |
Évaluation | 5.00/5 Total 1 Évaluations |
Développeur | natkongg2 |
Type de Paiement | free |
Langues Prises en Charge | 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" ] } |