Thumbs-preview for Youtube™
Shows multiple previews of a Youtube-video, when hovering on video-thumbnails on Youtube.com.
Что такое Thumbs-preview for Youtube™?
Thumbs-preview for Youtube™ - это расширение Chrome, разработанное https://sebnilsson.com, и его основная функция - "Shows multiple previews of a Youtube-video, when hovering on video-thumbnails on Youtube.com.".
Скачать файл CRX расширения Thumbs-preview for Youtube™
Скачайте файлы расширений Thumbs-preview for Youtube™ в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
Основная информация о расширении
| Название | |
| ID | fmgdbmahogeafeboejeaihgenfhncdia |
| Официальный URL | https://chromewebstore.google.com/detail/thumbs-preview-for-youtub/fmgdbmahogeafeboejeaihgenfhncdia |
| Описание | Shows multiple previews of a Youtube-video, when hovering on video-thumbnails on Youtube.com. |
| Размер файла | 40.47 KB |
| Количество установок | 112 |
| Текущая Версия | 0.2.1 |
| Последнее Обновление | 2016-01-25 |
| Дата публикации | 2016-01-20 |
| Рейтинг | 4.00/5 Всего 3 оценок |
| Разработчик | https://sebnilsson.com |
| Тип оплаты | free |
| Поддерживаемые языки | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 2,
"name": "Thumbs-preview for Youtube\u2122",
"description": "Shows multiple previews of a Youtube-video, when hovering on video-thumbnails on Youtube.com.",
"version": "0.2.1",
"author": "Seb Nilsson",
"homepage_url": "http:\/\/sebnilsson.com",
"permissions": [
"http:\/\/*.youtube.com\/*",
"https:\/\/*.youtube.com\/*"
],
"icons": {
"16": "icon16.png",
"48": "icon48.png",
"128": "icon128.png"
},
"background": {
"scripts": [
"background.js"
],
"persistent": false
},
"content_scripts": [
{
"js": [
"jquery-2.2.0.min.js",
"content.js"
],
"matches": [
"http:\/\/*.youtube.com\/*",
"https:\/\/*.youtube.com\/*"
]
}
],
"content_security_policy": "script-src 'self' https:\/\/www.google-analytics.com; object-src 'self'"
} | |