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