YouTube Enhanced Extension

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

YouTube Enhanced Extension là gì?

YouTube Enhanced Extension là một tiện ích mở rộng Chrome được phát triển bởi Black Cat Milo, và tính năng chính của nó là "A third party thing that makes watching YouTube videos a little bit better.".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot
screenshot
screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng YouTube Enhanced Extension

Tải xuống các tệp mở rộng YouTube Enhanced Extension dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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:                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên YouTube Enhanced Extension YouTube Enhanced Extension
ID oobgojiochekabnidddglbpbikhnfidb
URL Chính Thức https://chromewebstore.google.com/detail/youtube-enhanced-extensio/oobgojiochekabnidddglbpbikhnfidb
Mô tả A third party thing that makes watching YouTube videos a little bit better.
Kích Thước Tệp 4.96 MB
Số Lần Cài Đặt 615
Phiên Bản Hiện Tại 2.0.2
Cập Nhật Lần Cuối 2022-12-23
Ngày Phát Hành 2021-12-14
Đánh Giá 4.78/5 Tổng số 41 Đánh Giá
Nhà Phát Triển Black Cat Milo
Email [email protected]
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ 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"
            ]
        }
    ]
}