Search and Watch
Let you search on Youtube while a video is playing.
Search and Watchとは何ですか?
Search and Watchはnatkongg2によって開発されたChromeの拡張機能で、その主な機能は「Let you search on Youtube while a video is playing.」です。
拡張機能のスクリーンショット
Search and Watch拡張機能のCRXファイルをダウンロード
Search and Watch拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
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.
拡張機能の基本情報
名前 | Search and Watch |
ID | ljnmhiabegceemcenbabphfggdgmeoic |
公式URL | https://chrome.google.com/webstore/detail/search-and-watch/ljnmhiabegceemcenbabphfggdgmeoic |
説明 | Let you search on Youtube while a video is playing. |
ファイルサイズ | 122 KB |
インストール数 | 34 |
現在のバージョン | 1.0 |
最終更新日 | 2016-03-05 |
公開日 | 2016-03-05 |
評価 | 5.00/5 合計 1 レビュー |
開発者 | natkongg2 |
支払い方法 | free |
対応言語 | 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" ] } |