Hide Youtube Progress Bar

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

Was ist Hide Youtube Progress Bar?

Hide Youtube Progress Bar ist eine Chrome-Erweiterung, die von Unknown entwickelt wurde, und ihr Hauptmerkmal ist "Easily hide Youtube’s progress bar and all other information that shows the total duration of the video".

Erweiterungsscreenshots

screenshot
screenshot

Hide Youtube Progress Bar-Erweiterungs-CRX-Datei herunterladen

Laden Sie Hide Youtube Progress Bar-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        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                    

Grundlegende Informationen zur Erweiterung

Name Hide Youtube Progress Bar Hide Youtube Progress Bar
ID peojoklnhinheognhigeliholccihoec
Offizielle URL https://chromewebstore.google.com/detail/hide-youtube-progress-bar/peojoklnhinheognhigeliholccihoec
Beschreibung Easily hide Youtube’s progress bar and all other information that shows the total duration of the video
Dateigröße 14.88 KB
Installationsanzahl 2,657
Aktuelle Version 1.0
Letztes Update 2016-03-03
Veröffentlichungsdatum 2016-03-03
Bewertung 4.07/5 Insgesamt 29 Bewertungen
Entwickler Unknown
Zahlungsart free
Erweiterungswebsite https://github.com/NicolaiThorup/Chrome-Hide-Youtube-Progress-Bar
Unterstützte Sprachen 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"
    ]
}