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 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 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"
    }
}