YouTube Enhanced Extension

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

YouTube Enhanced Extensionคืออะไร?

YouTube Enhanced Extension เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Black Cat Milo และคุณลักษณะหลักของมันคือ "A third party thing that makes watching YouTube videos a little bit better."

ภาพหน้าจอของส่วนขยาย

screenshot
screenshot
screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย YouTube Enhanced Extension

ดาวน์โหลดไฟล์ส่วนขยาย YouTube Enhanced Extension ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        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"
            ]
        }
    ]
}