Youtube Dislike Count Extention

This extention enables the YouTube dislike count!

Was ist Youtube Dislike Count Extention?

Youtube Dislike Count Extention ist eine Chrome-Erweiterung, die von Ausama95 entwickelt wurde, und ihr Hauptmerkmal ist "This extention enables the YouTube dislike count!".

Erweiterungsscreenshots

screenshot
screenshot
screenshot

Youtube Dislike Count Extention-Erweiterungs-CRX-Datei herunterladen

Laden Sie Youtube Dislike Count Extention-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        This extension brings back the ability to be able to see the dislike ratio of any YouTube video.                    

Grundlegende Informationen zur Erweiterung

Name Youtube Dislike Count Extention Youtube Dislike Count Extention
ID ihelhpoojojegneekjecpiobfkbfcibi
Offizielle URL https://chrome.google.com/webstore/detail/youtube-dislike-count-ext/ihelhpoojojegneekjecpiobfkbfcibi
Beschreibung This extention enables the YouTube dislike count!
Dateigröße 24.13 KB
Installationsanzahl 105
Aktuelle Version 0.2
Letztes Update 2022-01-25
Veröffentlichungsdatum 2022-01-24
Bewertung 4.00/5 Insgesamt 4 Bewertungen
Entwickler Ausama95
E-Mail [email protected]
Zahlungsart free
Unterstützte Sprachen en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Youtube Dislike Count Extention",
    "description": "This extention enables the YouTube dislike count!",
    "version": "0.2",
    "manifest_version": 3,
    "background": {
        "service_worker": ".\/background.js"
    },
    "options_page": "options.html",
    "permissions": [
        "storage",
        "scripting"
    ],
    "host_permissions": [
        "*:\/\/*.youtube.com\/*"
    ],
    "action": {
        "default_popup": "popup.html",
        "default_icon": {
            "16": ".\/images\/obj-16x16.png",
            "32": ".\/images\/obj-32x32.png",
            "48": ".\/images\/obj-48x48.png",
            "128": ".\/images\/obj-128x128.png"
        }
    },
    "icons": {
        "16": ".\/images\/obj-16x16.png",
        "32": ".\/images\/obj-32x32.png",
        "48": ".\/images\/obj-48x48.png",
        "128": ".\/images\/obj-128x128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.youtube.com\/*"
            ],
            "js": [
                "content-script.js"
            ],
            "run_at": "document_start",
            "css": [
                "content-style.css"
            ]
        }
    ],
    "externally_connectable": {
        "matches": [
            "*:\/\/*.youtube.com\/*"
        ]
    },
    "web_accessible_resources": [
        {
            "resources": [
                "script.js"
            ],
            "matches": [
                "*:\/\/*.youtube.com\/*"
            ]
        }
    ]
}