Hide Youtube Progress Bar

Easily hide Youtube’s progress bar and all other information that shows the total duration of the video

Hide Youtube Progress Bar란 무엇입니까?

Hide Youtube Progress Bar은(는) Unknown에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Easily hide Youtube’s progress bar and all other information that shows the total duration of the video"입니다.

확장 프로그램 스크린샷

screenshot
screenshot

Hide Youtube Progress Bar 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        This is it to avoid spoilers given by the total time of the video and the related videos. Can easily be turned on and off!
Icon created by DesignBolts                    

확장 프로그램 기본 정보

이름 Hide Youtube Progress Bar Hide Youtube Progress Bar
ID peojoklnhinheognhigeliholccihoec
공식 URL https://chromewebstore.google.com/detail/hide-youtube-progress-bar/peojoklnhinheognhigeliholccihoec
설명 Easily hide Youtube’s progress bar and all other information that shows the total duration of the video
파일 크기 14.88 KB
설치 횟수 2,657
현재 버전 1.0
최근 업데이트 2016-03-03
출시 날짜 2016-03-03
평점 4.07/5 총 29 개의 평점
개발자 Unknown
결제 유형 free
확장 프로그램 웹 사이트 https://github.com/NicolaiThorup/Chrome-Hide-Youtube-Progress-Bar
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Hide Youtube Progress Bar",
    "description": "Easily hide Youtube\u2019s progress bar and all other information that shows the total duration of the video",
    "version": "1.0",
    "icons": {
        "16": "icon16.png",
        "24": "icon24.png",
        "32": "icon32.png",
        "48": "icon48.png",
        "64": "icon64.png"
    },
    "background": {
        "persistent": true,
        "scripts": [
            "bg.js"
        ]
    },
    "page_action": {
        "default_icon": {
            "16": "icon16.png",
            "24": "icon24.png",
            "32": "icon32.png",
            "48": "icon48.png",
            "64": "icon64.png"
        },
        "default_title": "Hide or show Youtube's progress bar ",
        "default_popup": "popup.html"
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*.youtube.com\/*",
                "https:\/\/*.youtube.com\/*"
            ],
            "js": [
                "app.js"
            ]
        }
    ],
    "permissions": [
        "tabs",
        "storage"
    ]
}