Hide Youtube Progress Bar

Easily hide Youtube’s progress bar and all other information that shows the total duration of the video

Apa itu Hide Youtube Progress Bar?

Hide Youtube Progress Bar adalah ekstensi Chrome yang dikembangkan oleh Unknown, dan fitur utamanya adalah "Easily hide Youtube’s progress bar and all other information that shows the total duration of the video".

Screenshot Ekstensi

screenshot
screenshot

Unduh Berkas CRX Ekstensi Hide Youtube Progress Bar

Unduh file ekstensi Hide Youtube Progress Bar dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.

Petunjuk Penggunaan Ekstensi

                        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                    

Informasi Dasar Ekstensi

Nama Hide Youtube Progress Bar Hide Youtube Progress Bar
ID peojoklnhinheognhigeliholccihoec
URL Resmi https://chromewebstore.google.com/detail/hide-youtube-progress-bar/peojoklnhinheognhigeliholccihoec
Deskripsi Easily hide Youtube’s progress bar and all other information that shows the total duration of the video
Ukuran File 14.88 KB
Jumlah Instalasi 2,657
Versi Saat Ini 1.0
Terakhir Diperbarui 2016-03-03
Tanggal Publikasi 2016-03-03
Penilaian 4.07/5 Total 29 Penilaian
Pengembang Unknown
Tipe Pembayaran free
Situs Ekstensi https://github.com/NicolaiThorup/Chrome-Hide-Youtube-Progress-Bar
Bahasa yang Didukung 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"
    ]
}