Forked YouTube Gaming

ForkedYTG enhances YouTube Gaming Livestream's with more emotes (Twitch, BTTV Emotes), new features, and more.

什么是Forked YouTube Gaming?

Forked YouTube Gaming是由mxr开发的Chrome扩展程序,该扩展的主要功能是“ForkedYTG enhances YouTube Gaming Livestream's with more emotes (Twitch, BTTV Emotes), new features, and more.”。

扩展截图

screenshot

下载Forked YouTube Gaming扩展crx文件

下载Forked YouTube Gaming扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        Forked off of (https://chrome.google.com/webstore/detail/better-youtube-gaming/ioncgheockjakdmpighekmfhdljboimf) to make it work                    

扩展基本信息

名称 Forked YouTube Gaming Forked YouTube Gaming
ID dehjikmfbdokdlkkchepifefodnmkmld
官方URL https://chrome.google.com/webstore/detail/forked-youtube-gaming/dehjikmfbdokdlkkchepifefodnmkmld
简介 ForkedYTG enhances YouTube Gaming Livestream's with more emotes (Twitch, BTTV Emotes), new features, and more.
文件大小 2.83 MB
安装次数 212
当前版本 0.5.0
更新时间 2021-01-06
上架时间 2021-01-04
评分 5.00/5 共2次评分
开发者 mxr
电子邮箱 [email protected]
付费类型 free
扩展官网 https://mxrr.dev/forkedytg
帮助页面URL https://github.com/mxrr/BetterYTG
支持的语言 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Forked YouTube Gaming",
    "short_name": "ForkYTG",
    "version": "0.5.0",
    "description": "ForkedYTG enhances YouTube Gaming Livestream's with more emotes (Twitch, BTTV Emotes), new features, and more.",
    "icons": {
        "16": "assets\/icons\/BetterYTG_red_16.png",
        "48": "assets\/icons\/BetterYTG_red_48.png",
        "128": "assets\/icons\/BetterYTG_red_128.png"
    },
    "permissions": [
        "storage",
        "tabs",
        "https:\/\/*.ytimg.com\/*",
        "https:\/\/twitchemotes.com\/*"
    ],
    "browser_specific_settings": {
        "gecko": {
            "id": "forkedYTG@mxr"
        }
    },
    "options_ui": {
        "page": "html\/options.html",
        "chrome_style": true
    },
    "browser_action": {
        "default_title": "BetterYTG"
    },
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.gaming.youtube.com\/*",
                "*:\/\/*.youtube.com\/*"
            ],
            "run_at": "document_end",
            "js": [
                "content.js"
            ],
            "all_frames": true
        }
    ],
    "web_accessible_resources": [
        "assets\/emotes\/*"
    ]
}