Hide Youtube Progress Bar
Easily hide Youtube’s progress bar and all other information that shows the total duration of the video
Co to jest Hide Youtube Progress Bar?
Hide Youtube Progress Bar to rozszerzenie Chrome opracowane przez Unknown, a jego główną funkcją jest „Easily hide Youtube’s progress bar and all other information that shows the total duration of the video”.
Zrzuty ekranu rozszerzenia
Pobierz plik CRX rozszerzenia Hide Youtube Progress Bar
Pobierz pliki rozszerzeń Hide Youtube Progress Bar w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.
Instrukcja Użytkowania Rozszerzenia
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
Podstawowe informacje o rozszerzeniu
Nazwa | Hide Youtube Progress Bar |
ID | peojoklnhinheognhigeliholccihoec |
Oficjalny URL | https://chromewebstore.google.com/detail/hide-youtube-progress-bar/peojoklnhinheognhigeliholccihoec |
Opis | Easily hide Youtube’s progress bar and all other information that shows the total duration of the video |
Rozmiar pliku | 14.88 KB |
Liczba instalacji | 2,657 |
Aktualna Wersja | 1.0 |
Ostatnia Aktualizacja | 2016-03-03 |
Data Publikacji | 2016-03-03 |
Ocena | 4.07/5 Łącznie 29 Oceny |
Deweloper | Unknown |
Typ Płatności | free |
Strona Rozszerzenia | https://github.com/NicolaiThorup/Chrome-Hide-Youtube-Progress-Bar |
Obsługiwane Języki | 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" ] } |