Expander for YouTube

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

Apa itu Expander for YouTube?

Expander for YouTube adalah ekstensi Chrome yang dikembangkan oleh KhAS, dan fitur utamanya adalah "This plugin implements the possibility to control size of YouTube's player".

Screenshot Ekstensi

screenshot

Unduh Berkas CRX Ekstensi Expander for YouTube

Unduh file ekstensi Expander for YouTube dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.

Petunjuk Penggunaan Ekstensi

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

Informasi Dasar Ekstensi

Nama Expander for YouTube Expander for YouTube
ID chajepccdlakdepgeiegefbemmpaogdo
URL Resmi https://chrome.google.com/webstore/detail/expander-for-youtube/chajepccdlakdepgeiegefbemmpaogdo
Deskripsi This plugin implements the possibility to control size of YouTube's player
Ukuran File 51.98 KB
Jumlah Instalasi 27
Versi Saat Ini 0.12
Terakhir Diperbarui 2013-08-26
Tanggal Publikasi 2013-08-26
Penilaian 1.00/5 Total 1 Penilaian
Pengembang KhAS
Tipe Pembayaran free
Bahasa yang Didukung 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"
        }
    ]
}