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 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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\/*"
    ]
}