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 - это расширение Chrome, разработанное Unknown, и его основная функция - "Easily hide Youtube’s progress bar and all other information that shows the total duration of the video".
Снимки экрана расширения
Скачать файл CRX расширения Hide Youtube Progress Bar
Скачайте файлы расширений Hide Youtube Progress Bar в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
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 |
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" ] } |