Search and Watch
Let you search on Youtube while a video is playing.
Cos'è Search and Watch?
Search and Watch è un'estensione di Chrome sviluppata da natkongg2, e la sua funzione principale è "Let you search on Youtube while a video is playing.".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione Search and Watch
Scarica i file di estensione Search and Watch in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
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.
Informazioni di Base sull'Estensione
Nome | Search and Watch |
ID | ljnmhiabegceemcenbabphfggdgmeoic |
URL Ufficiale | https://chrome.google.com/webstore/detail/search-and-watch/ljnmhiabegceemcenbabphfggdgmeoic |
Descrizione | Let you search on Youtube while a video is playing. |
Dimensione del File | 122 KB |
Conteggio Installazioni | 34 |
Versione Corrente | 1.0 |
Ultimo Aggiornamento | 2016-03-05 |
Data di Pubblicazione | 2016-03-05 |
Valutazione | 5.00/5 Totale 1 Valutazioni |
Sviluppatore | natkongg2 |
Tipo di Pagamento | free |
Lingue Supportate | 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" ] } |