YouTube Progress Bar

Adds a progress bar below YouTube videos

YouTube Progress Barとは何ですか?

YouTube Progress Barはbggrundによって開発されたChromeの拡張機能で、その主な機能は「Adds a progress bar below YouTube videos」です。

拡張機能のスクリーンショット

screenshot

YouTube Progress Bar拡張機能のCRXファイルをダウンロード

YouTube Progress Bar拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。

拡張機能の使用方法

                        Adds a permanent progress bar and timestamp beneath YouTube videos and movies

Source: https://github.com/bggrund/YouTubeProgressBar                    

拡張機能の基本情報

名前 YouTube Progress Bar YouTube Progress Bar
ID gcbpebcnhbpcommcmoiaepfaalanakhh
公式URL https://chromewebstore.google.com/detail/youtube-progress-bar/gcbpebcnhbpcommcmoiaepfaalanakhh
説明 Adds a progress bar below YouTube videos
ファイルサイズ 5.94 KB
インストール数 35
現在のバージョン 1.0
最終更新日 2021-07-19
公開日 2021-07-18
評価 4.25/5 合計 4 レビュー
開発者 bggrund
Eメール [email protected]
支払い方法 free
拡張機能のウェブサイト https://github.com/bggrund/YouTubeProgressBar
対応言語 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "YouTube Progress Bar",
    "version": "1.0",
    "description": "Adds a progress bar below YouTube videos",
    "icons": {
        "128": "128.png"
    },
    "browser_action": {
        "default_icon": "128.png"
    },
    "permissions": [
        "*:\/\/*.youtube.com\/*"
    ],
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.youtube.com\/*"
            ],
            "js": [
                "time.js"
            ],
            "css": [
                "time.css"
            ],
            "run_at": "document_idle"
        }
    ]
}