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 είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον Shubham Bassi, και η κύρια λειτουργία του είναι "Automatically pauses videos on YouTube, PrimeVideo, and Netflix when you switch to another tab and resumes when you switch back.".
Στιγμιότυπα Επέκτασης
Λήψη αρχείου CRX της επέκτασης SmartVid - Netflix, Amazon, YouTube autopause
Λήψη αρχείων επέκτασης 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 |
Ηλεκτρονικό ταχυδρομείο | [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 } |