Expander for YouTube

This plugin implements the possibility to control size of YouTube's player

Co to jest Expander for YouTube?

Expander for YouTube to rozszerzenie Chrome opracowane przez KhAS, a jego główną funkcją jest „This plugin implements the possibility to control size of YouTube's player”.

Zrzuty ekranu rozszerzenia

screenshot

Pobierz plik CRX rozszerzenia Expander for YouTube

Pobierz pliki rozszerzeń Expander for YouTube w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        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, используя даже колесо мыши. При переходе между видеозаписями размер видео остается постоянным.                    

Podstawowe informacje o rozszerzeniu

Nazwa Expander for YouTube Expander for YouTube
ID chajepccdlakdepgeiegefbemmpaogdo
Oficjalny URL https://chrome.google.com/webstore/detail/expander-for-youtube/chajepccdlakdepgeiegefbemmpaogdo
Opis This plugin implements the possibility to control size of YouTube's player
Rozmiar pliku 51.98 KB
Liczba instalacji 27
Aktualna Wersja 0.12
Ostatnia Aktualizacja 2013-08-26
Data Publikacji 2013-08-26
Ocena 1.00/5 Łącznie 1 Oceny
Deweloper KhAS
Typ Płatności free
Obsługiwane Języki 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"
        }
    ]
}