YouTube Progress Bar

Adds a progress bar below YouTube videos

Apa itu YouTube Progress Bar?

YouTube Progress Bar adalah ekstensi Chrome yang dikembangkan oleh bggrund, dan fitur utamanya adalah "Adds a progress bar below YouTube videos".

Screenshot Ekstensi

screenshot

Unduh Berkas CRX Ekstensi YouTube Progress Bar

Unduh file ekstensi 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

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

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

Informasi Dasar Ekstensi

Nama YouTube Progress Bar YouTube Progress Bar
ID gcbpebcnhbpcommcmoiaepfaalanakhh
URL Resmi https://chromewebstore.google.com/detail/youtube-progress-bar/gcbpebcnhbpcommcmoiaepfaalanakhh
Deskripsi Adds a progress bar below YouTube videos
Ukuran File 5.94 KB
Jumlah Instalasi 35
Versi Saat Ini 1.0
Terakhir Diperbarui 2021-07-19
Tanggal Publikasi 2021-07-18
Penilaian 4.25/5 Total 4 Penilaian
Pengembang bggrund
Email [email protected]
Tipe Pembayaran free
Situs Ekstensi https://github.com/bggrund/YouTubeProgressBar
Bahasa yang Didukung 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"
        }
    ]
}