Expander for YouTube
This plugin implements the possibility to control size of YouTube's player
O que é Expander for YouTube?
Expander for YouTube é uma extensão do Chrome desenvolvida por KhAS, e sua principal característica é "This plugin implements the possibility to control size of YouTube's player".
Capturas de Tela da Extensão
Baixar o arquivo CRX da Extensão Expander for YouTube
Baixe arquivos de extensão Expander for YouTube no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.
Instruções de Uso da Extensão
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, используя даже колесо мыши. При переходе между видеозаписями размер видео остается постоянным.
Informações Básicas da Extensão
Nome | |
ID | chajepccdlakdepgeiegefbemmpaogdo |
URL Oficial | https://chrome.google.com/webstore/detail/expander-for-youtube/chajepccdlakdepgeiegefbemmpaogdo |
Descrição | This plugin implements the possibility to control size of YouTube's player |
Tamanho do Arquivo | 51.98 KB |
Contagem de Instalações | 27 |
Versão Atual | 0.12 |
Última Atualização | 2013-08-26 |
Data de Publicação | 2013-08-26 |
Classificação | 1.00/5 Total de 1 Avaliações |
Desenvolvedor | KhAS |
Tipo de Pagamento | free |
Idiomas Suportados | 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" } ] } |