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.
Co to jest SmartVid - Netflix, Amazon, YouTube autopause?
SmartVid - Netflix, Amazon, YouTube autopause to rozszerzenie Chrome opracowane przez Shubham Bassi, a jego główną funkcją jest „Automatically pauses videos on YouTube, PrimeVideo, and Netflix when you switch to another tab and resumes when you switch back.”.
Zrzuty ekranu rozszerzenia
Pobierz plik CRX rozszerzenia SmartVid - Netflix, Amazon, YouTube autopause
Pobierz pliki rozszerzeń SmartVid - Netflix, Amazon, YouTube autopause w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.
Instrukcja Użytkowania Rozszerzenia
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.
Podstawowe informacje o rozszerzeniu
Nazwa | |
ID | hhgnmllddghdmpmnbdpkcmahegbdclnl |
Oficjalny URL | https://chromewebstore.google.com/detail/smartvid-netflix-amazon-y/hhgnmllddghdmpmnbdpkcmahegbdclnl |
Opis | Automatically pauses videos on YouTube, PrimeVideo, and Netflix when you switch to another tab and resumes when you switch back. |
Rozmiar pliku | 17.61 KB |
Liczba instalacji | 24 |
Aktualna Wersja | 2.0.0 |
Ostatnia Aktualizacja | 2020-09-29 |
Data Publikacji | 2020-09-04 |
Ocena | 5.00/5 Łącznie 2 Oceny |
Deweloper | Shubham Bassi |
[email protected] | |
Typ Płatności | free |
Strona Rozszerzenia | https://github.com/izedamo/SmartVideo |
Adres URL Strony Pomocy | https://github.com/izedamo/SmartVideo/issues |
Obsługiwane Języki | 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 } |