YT Gamify
A better YouTube Interface
What is YT Gamify?
YT Gamify is a Chrome extension developed by Maxime, and its main feature is "A better YouTube Interface".
Extension Screenshots
Download YT Gamify Extension CRX File
Download YT Gamify extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
YT Gamify allows you to apply the new YouTube Gaming Interface to classic YouTube links.
Extension Basic Information
Name | |
ID | ngealcjkilfhmkilnoemhhcmjlcjfndb |
Official URL | https://chromewebstore.google.com/detail/yt-gamify/ngealcjkilfhmkilnoemhhcmjlcjfndb |
Description | A better YouTube Interface |
File Size | 14.78 KB |
Installation Count | 51 |
Current Version | 1.4 |
Last Updated | 2016-05-12 |
Publish Date | 2016-05-11 |
Rating | 4.33/5 Total 6 Ratings |
Developer | Maxime |
Payment Type | free |
Supported Languages | 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 } } |