Hide Youtube Progress Bar

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

Qu'est-ce que Hide Youtube Progress Bar ?

Hide Youtube Progress Bar est une extension Chrome développée par Unknown, et sa fonction principale est "Easily hide Youtube’s progress bar and all other information that shows the total duration of the video".

Captures d'Écran de l'Extension

screenshot
screenshot

Télécharger le fichier CRX de l'extension Hide Youtube Progress Bar

Téléchargez les fichiers d'extension Hide Youtube Progress Bar au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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                    

Informations de Base sur l'Extension

Nom Hide Youtube Progress Bar Hide Youtube Progress Bar
ID peojoklnhinheognhigeliholccihoec
URL Officiel https://chromewebstore.google.com/detail/hide-youtube-progress-bar/peojoklnhinheognhigeliholccihoec
Description Easily hide Youtube’s progress bar and all other information that shows the total duration of the video
Taille du Fichier 14.88 KB
Nombre d'Installations 2,657
Version Actuelle 1.0
Dernière Mise à Jour 2016-03-03
Date de Publication 2016-03-03
Évaluation 4.07/5 Total 29 Évaluations
Développeur Unknown
Type de Paiement free
Site Web de l'Extension https://github.com/NicolaiThorup/Chrome-Hide-Youtube-Progress-Bar
Langues Prises en Charge 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"
    ]
}