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.
Was ist SmartVid - Netflix, Amazon, YouTube autopause?
SmartVid - Netflix, Amazon, YouTube autopause ist eine Chrome-Erweiterung, die von Shubham Bassi entwickelt wurde, und ihr Hauptmerkmal ist "Automatically pauses videos on YouTube, PrimeVideo, and Netflix when you switch to another tab and resumes when you switch back.".
Erweiterungsscreenshots
SmartVid - Netflix, Amazon, YouTube autopause-Erweiterungs-CRX-Datei herunterladen
Laden Sie SmartVid - Netflix, Amazon, YouTube autopause-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
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.
Grundlegende Informationen zur Erweiterung
Name | |
ID | hhgnmllddghdmpmnbdpkcmahegbdclnl |
Offizielle URL | https://chromewebstore.google.com/detail/smartvid-netflix-amazon-y/hhgnmllddghdmpmnbdpkcmahegbdclnl |
Beschreibung | Automatically pauses videos on YouTube, PrimeVideo, and Netflix when you switch to another tab and resumes when you switch back. |
Dateigröße | 17.61 KB |
Installationsanzahl | 24 |
Aktuelle Version | 2.0.0 |
Letztes Update | 2020-09-29 |
Veröffentlichungsdatum | 2020-09-04 |
Bewertung | 5.00/5 Insgesamt 2 Bewertungen |
Entwickler | Shubham Bassi |
[email protected] | |
Zahlungsart | free |
Erweiterungswebsite | https://github.com/izedamo/SmartVideo |
Hilfeseite URL | https://github.com/izedamo/SmartVideo/issues |
Unterstützte Sprachen | 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 } |