YT Gamify

A better YouTube Interface

Apa itu YT Gamify?

YT Gamify adalah ekstensi Chrome yang dikembangkan oleh Maxime, dan fitur utamanya adalah "A better YouTube Interface".

Screenshot Ekstensi

screenshot

Unduh Berkas CRX Ekstensi YT Gamify

Unduh file ekstensi YT Gamify 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

                        YT Gamify allows you to apply the new YouTube Gaming Interface to classic YouTube links.                    

Informasi Dasar Ekstensi

Nama YT Gamify YT Gamify
ID ngealcjkilfhmkilnoemhhcmjlcjfndb
URL Resmi https://chromewebstore.google.com/detail/yt-gamify/ngealcjkilfhmkilnoemhhcmjlcjfndb
Deskripsi A better YouTube Interface
Ukuran File 14.78 KB
Jumlah Instalasi 51
Versi Saat Ini 1.4
Terakhir Diperbarui 2016-05-12
Tanggal Publikasi 2016-05-11
Penilaian 4.33/5 Total 6 Penilaian
Pengembang Maxime
Tipe Pembayaran free
Bahasa yang Didukung en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "YT Gamify",
    "version": "1.4",
    "description": "A better YouTube Interface",
    "icons": {
        "48": "48.png",
        "128": "128.png"
    },
    "background": {
        "page": "bg.html"
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*.youtube.com\/*",
                "https:\/\/*.youtube.com\/*"
            ],
            "js": [
                "script.js"
            ],
            "run_at": "document_start"
        }
    ],
    "permissions": [
        "storage",
        "http:\/\/*.youtube.com\/*",
        "https:\/\/*.youtube.com\/*"
    ],
    "browser_action": {
        "default_popup": "options.html"
    },
    "options_ui": {
        "page": "options.html",
        "chrome_style": true
    }
}