Expander for YouTube

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

Was ist Expander for YouTube?

Expander for YouTube ist eine Chrome-Erweiterung, die von KhAS entwickelt wurde, und ihr Hauptmerkmal ist "This plugin implements the possibility to control size of YouTube's player".

Erweiterungsscreenshots

screenshot

Expander for YouTube-Erweiterungs-CRX-Datei herunterladen

Laden Sie Expander for YouTube-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

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

Grundlegende Informationen zur Erweiterung

Name Expander for YouTube Expander for YouTube
ID chajepccdlakdepgeiegefbemmpaogdo
Offizielle URL https://chrome.google.com/webstore/detail/expander-for-youtube/chajepccdlakdepgeiegefbemmpaogdo
Beschreibung This plugin implements the possibility to control size of YouTube's player
Dateigröße 51.98 KB
Installationsanzahl 27
Aktuelle Version 0.12
Letztes Update 2013-08-26
Veröffentlichungsdatum 2013-08-26
Bewertung 1.00/5 Insgesamt 1 Bewertungen
Entwickler KhAS
Zahlungsart free
Unterstützte Sprachen 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"
        }
    ]
}