Expander for YouTube
This plugin implements the possibility to control size of YouTube's player
Hvad er Expander for YouTube?
Expander for YouTube er en Chrome-udvidelse udviklet af KhAS, og dens hovedfunktion er "This plugin implements the possibility to control size of YouTube's player".
Udvidelsesskærmbilleder
Download Expander for YouTube-udvidelses-CRX-fil
Download Expander for YouTube-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.
Brugsanvisning til Udvidelsen
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, используя даже колесо мыши. При переходе между видеозаписями размер видео остается постоянным.
Grundlæggende oplysninger om udvidelsen
Navn | |
ID | chajepccdlakdepgeiegefbemmpaogdo |
Officiel URL | https://chrome.google.com/webstore/detail/expander-for-youtube/chajepccdlakdepgeiegefbemmpaogdo |
Beskrivelse | This plugin implements the possibility to control size of YouTube's player |
Filstørrelse | 51.98 KB |
Antal Installationer | 27 |
Nuværende Version | 0.12 |
Senest Opdateret | 2013-08-26 |
Udgivelsesdato | 2013-08-26 |
Bedømmelse | 1.00/5 Samlet 1 Bedømmelser |
Udvikler | KhAS |
Betalingsmetode | free |
Understøttede Sprog | 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" } ] } |