Video Bar

Customizable progress bar for Youtube videos and other web sites

Video Bar란 무엇입니까?

Video Bar은(는) alikims에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Customizable progress bar for Youtube videos and other web sites"입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot

Video Bar 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        Adds a progress bar to YouTube videos and videos on other web sites. 

This helps, in a non-intrusive way, to keep track of the video progress while all the controls are hidden.

The progress bar position, size, colors, timer font and mouse-over behavior can be customized in the options. The page has a live preview of the bar with "Save settings" and "Restore default" buttons.

All settings are kept in the local browser's storage. 

Left mouse click on the extension's icon turns it on/off for each browser's tab.                    

확장 프로그램 기본 정보

이름 Video Bar Video Bar
ID nediigdbkfmemfcleolaonlpbigjhjhi
공식 URL https://chromewebstore.google.com/detail/video-bar/nediigdbkfmemfcleolaonlpbigjhjhi
설명 Customizable progress bar for Youtube videos and other web sites
파일 크기 17.83 KB
설치 횟수 99
현재 버전 0.0.7
최근 업데이트 2021-09-20
출시 날짜 2021-09-16
평점 4.67/5 총 6 개의 평점
개발자 alikims
이메일 [email protected]
결제 유형 free
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Video Bar",
    "version": "0.0.7",
    "description": "Customizable progress bar for Youtube videos and other web sites",
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "browser_action": {
        "default_icon": {
            "16": "ico\/16.png",
            "48": "ico\/48.png",
            "128": "ico\/128.png"
        }
    },
    "permissions": [
        "storage"
    ],
    "content_scripts": [
        {
            "all_frames": true,
            "matches": [
                "*:\/\/*\/*"
            ],
            "js": [
                "bar_on.js"
            ],
            "run_at": "document_start"
        }
    ],
    "options_ui": {
        "page": "options.html",
        "open_in_tab": false
    },
    "icons": {
        "16": "ico\/16.png",
        "48": "ico\/48.png",
        "128": "ico\/128.png"
    }
}