Expander for YouTube
This plugin implements the possibility to control size of YouTube's player
Cos'è Expander for YouTube?
Expander for YouTube è un'estensione di Chrome sviluppata da KhAS, e la sua funzione principale è "This plugin implements the possibility to control size of YouTube's player".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione Expander for YouTube
Scarica i file di estensione Expander for YouTube in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
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, используя даже колесо мыши. При переходе между видеозаписями размер видео остается постоянным.
Informazioni di Base sull'Estensione
Nome | |
ID | chajepccdlakdepgeiegefbemmpaogdo |
URL Ufficiale | https://chrome.google.com/webstore/detail/expander-for-youtube/chajepccdlakdepgeiegefbemmpaogdo |
Descrizione | This plugin implements the possibility to control size of YouTube's player |
Dimensione del File | 51.98 KB |
Conteggio Installazioni | 27 |
Versione Corrente | 0.12 |
Ultimo Aggiornamento | 2013-08-26 |
Data di Pubblicazione | 2013-08-26 |
Valutazione | 1.00/5 Totale 1 Valutazioni |
Sviluppatore | KhAS |
Tipo di Pagamento | free |
Lingue Supportate | 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" } ] } |