YouTube progress in tab (favicon)
Shows the progress of the video as a bar in the tab by changing the favicon. It also shows if the video is playing or is paused
Что такое YouTube progress in tab (favicon)?
YouTube progress in tab (favicon) - это расширение Chrome, разработанное Andrei, и его основная функция - "Shows the progress of the video as a bar in the tab by changing the favicon. It also shows if the video is playing or is paused".
Снимки экрана расширения
Скачать файл CRX расширения YouTube progress in tab (favicon)
Скачайте файлы расширений YouTube progress in tab (favicon) в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
0.3: - Favicon now changes the white "play" symbol white a "pause" symbol when video is paused/stopped - Progress bar for playing videos is now red - Added a white background to the progress bar for better visibility 0.2: - Paused/stopped videos now have a greyed out progress bar 0.1: - Initial release
Основная информация о расширении
Название | |
ID | ocihcnaifpkaceaiiokcimplnnlanifp |
Официальный URL | https://chrome.google.com/webstore/detail/youtube-progress-in-tab-f/ocihcnaifpkaceaiiokcimplnnlanifp |
Описание | Shows the progress of the video as a bar in the tab by changing the favicon. It also shows if the video is playing or is paused |
Размер файла | 8.26 KB |
Количество установок | 678 |
Текущая Версия | 0.3 |
Последнее Обновление | 2018-02-10 |
Дата публикации | 2018-02-10 |
Рейтинг | 2.08/5 Всего 13 оценок |
Разработчик | Andrei |
Электронная почта | [email protected] |
Тип оплаты | free |
Поддерживаемые языки | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "YouTube progress in tab (favicon)", "description": "Shows the progress of the video as a bar in the tab by changing the favicon. It also shows if the video is playing or is paused", "version": "0.3", "icons": { "48": "images\/48.png", "128": "images\/128.png" }, "content_scripts": [ { "matches": [ "https:\/\/*.youtube.com\/watch*" ], "js": [ "functions.js", "content.js" ] }, { "matches": [ "https:\/\/*.youtube.com\/*" ], "js": [ "functions.js", "changedefaultfavicon.js" ] } ], "web_accessible_resources": [ "event.js" ], "permissions": [ "http:\/\/www.youtube.com\/" ] } |