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 Ali Abbas द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "This extension display the video progress percentage on OTT Platforms like Netflix, Amazon Prime Video, and Youtube etc"।

एक्सटेंशन स्क्रीनशॉट्स

screenshot
screenshot
screenshot
screenshot
screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Video Percentage Indicator एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        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 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"
    }
}