YT Gamify

A better YouTube Interface

Qu'est-ce que YT Gamify ?

YT Gamify est une extension Chrome développée par Maxime, et sa fonction principale est "A better YouTube Interface".

Captures d'Écran de l'Extension

screenshot

Télécharger le fichier CRX de l'extension YT Gamify

Téléchargez les fichiers d'extension YT Gamify au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

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

Informations de Base sur l'Extension

Nom YT Gamify YT Gamify
ID ngealcjkilfhmkilnoemhhcmjlcjfndb
URL Officiel https://chromewebstore.google.com/detail/yt-gamify/ngealcjkilfhmkilnoemhhcmjlcjfndb
Description A better YouTube Interface
Taille du Fichier 14.78 KB
Nombre d'Installations 51
Version Actuelle 1.4
Dernière Mise à Jour 2016-05-12
Date de Publication 2016-05-11
Évaluation 4.33/5 Total 6 Évaluations
Développeur Maxime
Type de Paiement free
Langues Prises en Charge 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
    }
}