YT Gamify
A better YouTube Interface
什么是YT Gamify?
YT Gamify是由Maxime开发的Chrome扩展程序,该扩展的主要功能是“A better YouTube Interface”。
扩展截图
下载YT Gamify扩展crx文件
下载YT Gamify扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
YT Gamify allows you to apply the new YouTube Gaming Interface to classic YouTube links.
扩展基本信息
名称 | |
ID | ngealcjkilfhmkilnoemhhcmjlcjfndb |
官方URL | 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 } } |