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文件

下載Video Bar擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        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
官方網址 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"
    }
}