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 द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Easily hide Youtube’s progress bar and all other information that shows the total duration of the video"।

एक्सटेंशन स्क्रीनशॉट्स

screenshot
screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Hide Youtube Progress Bar एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        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
आधिकारिक URL 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"
    ]
}