SmartVid - Netflix, Amazon, YouTube autopause
Automatically pauses videos on YouTube, PrimeVideo, and Netflix when you switch to another tab and resumes when you switch back.
SmartVid - Netflix, Amazon, YouTube autopauseとは何ですか?
SmartVid - Netflix, Amazon, YouTube autopauseはShubham Bassiによって開発されたChromeの拡張機能で、その主な機能は「Automatically pauses videos on YouTube, PrimeVideo, and Netflix when you switch to another tab and resumes when you switch back.」です。
拡張機能のスクリーンショット
SmartVid - Netflix, Amazon, YouTube autopause拡張機能のCRXファイルをダウンロード
SmartVid - Netflix, Amazon, YouTube autopause拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
This extension checks and automatically pauses the videos playing on Netflix, YouTube and PrimeVideo websites when you switch to another tab. When you switch back to any of the paused tabs, the video will resume from where you left off.
拡張機能の基本情報
名前 | |
ID | hhgnmllddghdmpmnbdpkcmahegbdclnl |
公式URL | https://chromewebstore.google.com/detail/smartvid-netflix-amazon-y/hhgnmllddghdmpmnbdpkcmahegbdclnl |
説明 | Automatically pauses videos on YouTube, PrimeVideo, and Netflix when you switch to another tab and resumes when you switch back. |
ファイルサイズ | 17.61 KB |
インストール数 | 24 |
現在のバージョン | 2.0.0 |
最終更新日 | 2020-09-29 |
公開日 | 2020-09-04 |
評価 | 5.00/5 合計 2 レビュー |
開発者 | Shubham Bassi |
Eメール | [email protected] |
支払い方法 | free |
拡張機能のウェブサイト | https://github.com/izedamo/SmartVideo |
ヘルプページのURL | https://github.com/izedamo/SmartVideo/issues |
対応言語 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "SmartVid - Netflix, Amazon, YouTube autopause", "version": "2.0.0", "description": "Automatically pauses videos on YouTube, PrimeVideo, and Netflix when you switch to another tab and resumes when you switch back.", "permissions": [ "tabs", "storage" ], "background": { "scripts": [ "scripts\/background.js" ], "persistent": false }, "content_scripts": [ { "matches": [ "https:\/\/*.primevideo.com\/*", "https:\/\/*.youtube.com\/*", "https:\/\/*.netflix.com\/*" ], "js": [ "scripts\/content-script.js" ] } ], "icons": { "16": "icons\/SmartVideo16.png", "32": "icons\/SmartVideo32.png", "48": "icons\/SmartVideo48.png", "128": "icons\/SmartVideo128.png" }, "manifest_version": 2 } |