YT Gamify

A better YouTube Interface

什麼是YT Gamify?

YT Gamify是由Maxime開發的Chrome擴展程式,該擴展的主要功能是“A better YouTube Interface”。

擴展截圖

screenshot

下載YT Gamify擴展crx文件

下載YT Gamify擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

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

擴展基本資訊

名稱 YT Gamify YT Gamify
ID ngealcjkilfhmkilnoemhhcmjlcjfndb
官方網址 https://chromewebstore.google.com/detail/yt-gamify/ngealcjkilfhmkilnoemhhcmjlcjfndb
簡介 A better YouTube Interface
檔案大小 14.78 KB
安裝次數 51
目前版本 1.4
更新時間 2016-05-12
上架時間 2016-05-11
評分 4.33/5 共 6 次評分
開發者 Maxime
付費類型 free
支援的語言 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
    }
}