YT Gamify

A better YouTube Interface

Cos'è YT Gamify?

YT Gamify è un'estensione di Chrome sviluppata da Maxime, e la sua funzione principale è "A better YouTube Interface".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione YT Gamify

Scarica i file di estensione YT Gamify in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

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

Informazioni di Base sull'Estensione

Nome YT Gamify YT Gamify
ID ngealcjkilfhmkilnoemhhcmjlcjfndb
URL Ufficiale https://chromewebstore.google.com/detail/yt-gamify/ngealcjkilfhmkilnoemhhcmjlcjfndb
Descrizione A better YouTube Interface
Dimensione del File 14.78 KB
Conteggio Installazioni 51
Versione Corrente 1.4
Ultimo Aggiornamento 2016-05-12
Data di Pubblicazione 2016-05-11
Valutazione 4.33/5 Totale 6 Valutazioni
Sviluppatore Maxime
Tipo di Pagamento free
Lingue Supportate 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
    }
}