YouTube Enhanced Extension

A third party thing that makes watching YouTube videos a little bit better.

YouTube Enhanced Extension란 무엇입니까?

YouTube Enhanced Extension은(는) Black Cat Milo에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "A third party thing that makes watching YouTube videos a little bit better."입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot
screenshot

YouTube Enhanced Extension 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        This extension currently does the following:

-Enables emotes for comments (mostly forsen's Twitch, BTTV, and FFZ emotes, both static and animated).

-In-video Comments - where if you post a comment with a timestamp at the beginning, it will show up on the video at that time. Emotes are also enabled for this.

Okayga :+1:                    

확장 프로그램 기본 정보

이름 YouTube Enhanced Extension YouTube Enhanced Extension
ID oobgojiochekabnidddglbpbikhnfidb
공식 URL https://chromewebstore.google.com/detail/youtube-enhanced-extensio/oobgojiochekabnidddglbpbikhnfidb
설명 A third party thing that makes watching YouTube videos a little bit better.
파일 크기 4.96 MB
설치 횟수 615
현재 버전 2.0.2
최근 업데이트 2022-12-23
출시 날짜 2021-12-14
평점 4.78/5 총 41 개의 평점
개발자 Black Cat Milo
이메일 [email protected]
결제 유형 free
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "YouTube Enhanced Extension",
    "version": "2.0.2",
    "manifest_version": 3,
    "description": "A third party thing that makes watching YouTube videos a little bit better.",
    "permissions": [
        "cookies",
        "tabs"
    ],
    "icons": {
        "128": "icon.png"
    },
    "host_permissions": [
        "https:\/\/www.youtube.com\/"
    ],
    "background": {
        "service_worker": "background.js"
    },
    "action": {
        "default_popup": "popup.html"
    },
    "web_accessible_resources": [
        {
            "resources": [
                "emotes\/images\/*"
            ],
            "matches": [
                "https:\/\/www.youtube.com\/*"
            ]
        }
    ],
    "content_scripts": [
        {
            "matches": [
                "https:\/\/www.youtube.com\/*"
            ],
            "js": [
                "global-content-script.js",
                "setting-container\/setting-container.js",
                "emotes\/emotes.js",
                "in-video-comments\/in-video-comments.js"
            ],
            "css": [
                "setting-container\/setting-container.css",
                "emotes\/emotes.css",
                "in-video-comments\/in-video-comments.css"
            ]
        }
    ]
}