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ファイルをダウンロード

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

拡張機能の使用方法

                        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"
    ]
}