Video Percentage Indicator
This extension display the video progress percentage on OTT Platforms like Netflix, Amazon Prime Video, and Youtube etc
Τι είναι το Video Percentage Indicator;
Το Video Percentage Indicator είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον Ali Abbas, και η κύρια λειτουργία του είναι "This extension display the video progress percentage on OTT Platforms like Netflix, Amazon Prime Video, and Youtube etc".
Στιγμιότυπα Επέκτασης
Λήψη αρχείου CRX της επέκτασης Video Percentage Indicator
Λήψη αρχείων επέκτασης Video Percentage Indicator σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.
Οδηγίες Χρήσης της Επέκτασης
Time is important and so is keeping the track Always keep a check at the video progress all the time. No need to hover again and again to check the remaining time Either Binge watching or just exploring youtube videos, always be informed of the video progress in the form of percentage. Being an engineer, I always have an eye for User Experience in any product that I use. So while watching videos on major OTT platforms, after switching to full screen, I had to hover to check the remaining time and same scenario occurred during college days while preparing for exams, long boring lectures on youtube watching at 2X speed and that too one day before exam, it was hard for me to cope-up with those lectures. So in order to ease my life, I developed this extension. After successfully testing it on youtube, extended the support for Netflix, Amazon Prime Video, Disney HotStar and many other OTT Platforms.
Βασικές Πληροφορίες Επέκτασης
Όνομα | Video Percentage Indicator |
ID | fjeaoggibojiiijfgbkfdbpopbhpjipl |
Επίσημο URL | https://chromewebstore.google.com/detail/video-percentage-indicato/fjeaoggibojiiijfgbkfdbpopbhpjipl |
Περιγραφή | This extension display the video progress percentage on OTT Platforms like Netflix, Amazon Prime Video, and Youtube etc |
Μέγεθος Αρχείου | 21.66 KB |
Αριθμός Εγκαταστάσεων | 189 |
Τρέχουσα Έκδοση | 0.6 |
Τελευταία Ενημέρωση | 2021-11-24 |
Ημερομηνία Δημοσίευσης | 2021-01-14 |
Αξιολόγηση | 4.91/5 Συνολικά 22 Αξιολογήσεις |
Προγραμματιστής | Ali Abbas |
Ηλεκτρονικό ταχυδρομείο | [email protected] |
Τύπος Πληρωμής | free |
Υποστηριζόμενες Γλώσσες | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Video Percentage Indicator", "version": "0.6", "description": "This extension display the video progress percentage on OTT Platforms like Netflix, Amazon Prime Video, and Youtube etc", "permissions": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "background": { "scripts": [ "js\/background.js" ] }, "content_scripts": [ { "matches": [ "https:\/\/*\/*" ], "js": [ "js\/v2.js" ], "run_at": "document_end" } ], "icons": { "16": "img\/logo.png", "48": "img\/logo.png", "128": "img\/logo.png" } } |