YouTube Zoomer
Easily zoom on YouTube videos, with a simple scroll
Что такое YouTube Zoomer?
YouTube Zoomer - это расширение Chrome, разработанное teyzer18, и его основная функция - "Easily zoom on YouTube videos, with a simple scroll".
Снимки экрана расширения
Скачать файл CRX расширения YouTube Zoomer
Скачайте файлы расширений YouTube Zoomer в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
With this extension, you can easily zoom on YouTube videos. It can be useful to seek for something particular in a video, something you have some difficulties to see, or to resize the format of the theater mode. Основная информация о расширении
| Название | |
| ID | bgdkkdnidmmakdgebkgaeijbfkhieejn |
| Официальный URL | https://chromewebstore.google.com/detail/youtube-zoomer/bgdkkdnidmmakdgebkgaeijbfkhieejn |
| Описание | Easily zoom on YouTube videos, with a simple scroll |
| Размер файла | 13.8 KB |
| Количество установок | 1,623 |
| Текущая Версия | 1.0 |
| Последнее Обновление | 2020-08-23 |
| Дата публикации | 2020-08-23 |
| Рейтинг | 3.05/5 Всего 20 оценок |
| Разработчик | teyzer18 |
| Электронная почта | [email protected] |
| Тип оплаты | free |
| Поддерживаемые языки | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 2,
"version": "1.0",
"name": "YouTube Zoomer",
"description": "Easily zoom on YouTube videos, with a simple scroll",
"background": {
"persistent": false,
"scripts": [
"background\/background.js"
]
},
"content_scripts": [
{
"matches": [
"*:\/\/*.youtube.com\/*"
],
"js": [
"content\/injection.js"
]
}
],
"browser_action": {
"default_popup": "popup\/popup.html",
"default_icon": "icons\/icon.png"
},
"permissions": [
"storage",
"activeTab",
"*:\/\/*.youtube.com\/*",
"background"
]
} | |