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ファイルをダウンロード

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
Eメール [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"
            ]
        }
    ]
}