YT Gamify

A better YouTube Interface

Wat is YT Gamify?

YT Gamify is een Chrome-extensie ontwikkeld door Maxime, en de belangrijkste functie is "A better YouTube Interface".

Extensie Screenshots

screenshot

Download het CRX-bestand van de extensie YT Gamify

Download YT Gamify-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

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

Basisinformatie over de Extensie

Naam YT Gamify YT Gamify
ID ngealcjkilfhmkilnoemhhcmjlcjfndb
Officiële URL https://chromewebstore.google.com/detail/yt-gamify/ngealcjkilfhmkilnoemhhcmjlcjfndb
Beschrijving A better YouTube Interface
Bestandsgrootte 14.78 KB
Aantal Installaties 51
Huidige Versie 1.4
Laatst Bijgewerkt 2016-05-12
Publicatiedatum 2016-05-11
Beoordeling 4.33/5 Totaal 6 Beoordelingen
Ontwikkelaar Maxime
Betalingswijze free
Ondersteunde Talen 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
    }
}