Hide Youtube Progress Bar
Easily hide Youtube’s progress bar and all other information that shows the total duration of the video
Co je Hide Youtube Progress Bar?
Hide Youtube Progress Bar je rozšíření Chrome vyvinuté Unknown, a jeho hlavní funkcí je „Easily hide Youtube’s progress bar and all other information that shows the total duration of the video“.
Snímky obrazovky rozšíření
Stáhnout soubor CRX rozšíření Hide Youtube Progress Bar
Stáhněte si soubory rozšíření Hide Youtube Progress Bar ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.
Pokyny pro Použití Rozšíření
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
Základní Informace o Rozšíření
Název | Hide Youtube Progress Bar |
ID | peojoklnhinheognhigeliholccihoec |
Oficiální URL | https://chromewebstore.google.com/detail/hide-youtube-progress-bar/peojoklnhinheognhigeliholccihoec |
Popis | Easily hide Youtube’s progress bar and all other information that shows the total duration of the video |
Velikost souboru | 14.88 KB |
Počet instalací | 2,657 |
Aktuální Verze | 1.0 |
Poslední Aktualizace | 2016-03-03 |
Datum Vydání | 2016-03-03 |
Hodnocení | 4.07/5 Celkem 29 Hodnocení |
Vývojář | Unknown |
Typ Platby | free |
Webové stránky Rozšíření | https://github.com/NicolaiThorup/Chrome-Hide-Youtube-Progress-Bar |
Podporované Jazyky | 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" ] } |