YouTube Enhanced Extension

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

Qu'est-ce que YouTube Enhanced Extension ?

YouTube Enhanced Extension est une extension Chrome développée par Black Cat Milo, et sa fonction principale est "A third party thing that makes watching YouTube videos a little bit better.".

Captures d'Écran de l'Extension

screenshot
screenshot
screenshot
screenshot

Télécharger le fichier CRX de l'extension YouTube Enhanced Extension

Téléchargez les fichiers d'extension YouTube Enhanced Extension au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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:                    

Informations de Base sur l'Extension

Nom YouTube Enhanced Extension YouTube Enhanced Extension
ID oobgojiochekabnidddglbpbikhnfidb
URL Officiel https://chromewebstore.google.com/detail/youtube-enhanced-extensio/oobgojiochekabnidddglbpbikhnfidb
Description A third party thing that makes watching YouTube videos a little bit better.
Taille du Fichier 4.96 MB
Nombre d'Installations 615
Version Actuelle 2.0.2
Dernière Mise à Jour 2022-12-23
Date de Publication 2021-12-14
Évaluation 4.78/5 Total 41 Évaluations
Développeur Black Cat Milo
Email [email protected]
Type de Paiement free
Langues Prises en Charge 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"
            ]
        }
    ]
}