Expander for YouTube
This plugin implements the possibility to control size of YouTube's player
Что такое Expander for YouTube?
Expander for YouTube - это расширение Chrome, разработанное KhAS, и его основная функция - "This plugin implements the possibility to control size of YouTube's player".
Снимки экрана расширения
Скачать файл CRX расширения Expander for YouTube
Скачайте файлы расширений Expander for YouTube в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
This plugin allows you to easily change the size of the video in Youtube, even using the mouse wheel. When switching between video video size remains constant. Этот плагин позволяет вам легко изменять размер видео в Youtube, используя даже колесо мыши. При переходе между видеозаписями размер видео остается постоянным.
Основная информация о расширении
Название | |
ID | chajepccdlakdepgeiegefbemmpaogdo |
Официальный URL | https://chrome.google.com/webstore/detail/expander-for-youtube/chajepccdlakdepgeiegefbemmpaogdo |
Описание | This plugin implements the possibility to control size of YouTube's player |
Размер файла | 51.98 KB |
Количество установок | 27 |
Текущая Версия | 0.12 |
Последнее Обновление | 2013-08-26 |
Дата публикации | 2013-08-26 |
Рейтинг | 1.00/5 Всего 1 оценок |
Разработчик | KhAS |
Тип оплаты | free |
Поддерживаемые языки | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "description": "This plugin implements the possibility to control size of YouTube's player", "name": "Expander for YouTube", "version": "0.12", "manifest_version": 2, "permissions": [ "http:\/\/www.youtube.com\/*", "https:\/\/www.youtube.com\/*" ], "icons": { "128": "icons\/logo128.png", "48": "icons\/logo48.png" }, "content_scripts": [ { "matches": [ "http:\/\/www.youtube.com\/*" ], "js": [ "jquery.js", "jquery.mousewheel.js", "jquery.hashchange.js" ], "run_at": "document_start" }, { "matches": [ "http:\/\/www.youtube.com\/*" ], "js": [ "content.js" ], "css": [ "css\/content.css" ], "run_at": "document_end" } ] } |