Search and Watch
Let you search on Youtube while a video is playing.
Co je Search and Watch?
Search and Watch je rozšíření Chrome vyvinuté natkongg2, a jeho hlavní funkcí je „Let you search on Youtube while a video is playing.“.
Snímky obrazovky rozšíření
Stáhnout soubor CRX rozšíření Search and Watch
Stáhněte si soubory rozšíření Search and Watch ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.
Pokyny pro Použití Rozšíření
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.
Základní Informace o Rozšíření
Název | Search and Watch |
ID | ljnmhiabegceemcenbabphfggdgmeoic |
Oficiální URL | https://chrome.google.com/webstore/detail/search-and-watch/ljnmhiabegceemcenbabphfggdgmeoic |
Popis | Let you search on Youtube while a video is playing. |
Velikost souboru | 122 KB |
Počet instalací | 34 |
Aktuální Verze | 1.0 |
Poslední Aktualizace | 2016-03-05 |
Datum Vydání | 2016-03-05 |
Hodnocení | 5.00/5 Celkem 1 Hodnocení |
Vývojář | natkongg2 |
Typ Platby | free |
Podporované Jazyky | 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" ] } |