Thumbnail Viewer for YouTube™
A simple extension that grabs the thumbnail from the current youtube video and displays it.
Что такое Thumbnail Viewer for YouTube™?
Thumbnail Viewer for YouTube™ - это расширение Chrome, разработанное Master, и его основная функция - "A simple extension that grabs the thumbnail from the current youtube video and displays it.".
Снимки экрана расширения
Скачать файл CRX расширения Thumbnail Viewer for YouTube™
Скачайте файлы расширений Thumbnail Viewer for YouTube™ в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
Changelog: v.1.3.5 - Better icon v.1.3.4 - No longer needs tabs permission - Uses slightly less screen real estate - Bug fixed with showing cached thumbnail when clicking another video.
Основная информация о расширении
Название | Thumbnail Viewer for YouTube™ |
ID | galcjdfminhddlmheppdgddbekgdofcm |
Официальный URL | https://chromewebstore.google.com/detail/thumbnail-viewer-for-yout/galcjdfminhddlmheppdgddbekgdofcm |
Описание | A simple extension that grabs the thumbnail from the current youtube video and displays it. |
Размер файла | 66.25 KB |
Количество установок | 3,244 |
Текущая Версия | 1.3.5 |
Последнее Обновление | 2014-07-15 |
Дата публикации | 2014-07-15 |
Рейтинг | 4.47/5 Всего 19 оценок |
Разработчик | Master |
Тип оплаты | free |
Поддерживаемые языки | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "author": "The Master", "name": "Thumbnail Viewer for YouTube\u2122", "description": "A simple extension that grabs the thumbnail from the current youtube video and displays it.", "manifest_version": 2, "version": "1.3.5", "icons": { "16": "thumbnail-16.png", "48": "thumbnail-48.png", "128": "thumbnail-128.png" }, "permissions": [ "activeTab", "*:\/\/*.youtube.com\/*" ], "browser_action": { "default_icon": "thumbnail-48.png", "default_title": "Click to view current video thumbnail", "default_popup": "popup.html" }, "content_security_policy": "script-src 'self'; object-src 'self'", "web_accessible_resources": [ "jquery.js", "popup.js", "popup.css", "thumbnail-16.png", "thumbnail-48.png", "thumbnail-128.png" ] } |