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開發的Chrome擴展程式,該擴展的主要功能是“This extension display the video progress percentage on OTT Platforms like Netflix, Amazon Prime Video, and Youtube etc”。

擴展截圖

screenshot
screenshot
screenshot
screenshot
screenshot

下載Video Percentage Indicator擴展crx文件

下載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 Video Percentage Indicator
ID fjeaoggibojiiijfgbkfdbpopbhpjipl
官方網址 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"
    }
}