Youtube Dislike Count Extention

This extention enables the YouTube dislike count!

Co to jest Youtube Dislike Count Extention?

Youtube Dislike Count Extention to rozszerzenie Chrome opracowane przez Ausama95, a jego główną funkcją jest „This extention enables the YouTube dislike count!”.

Zrzuty ekranu rozszerzenia

screenshot
screenshot
screenshot

Pobierz plik CRX rozszerzenia Youtube Dislike Count Extention

Pobierz pliki rozszerzeń Youtube Dislike Count Extention w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

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

Podstawowe informacje o rozszerzeniu

Nazwa Youtube Dislike Count Extention Youtube Dislike Count Extention
ID ihelhpoojojegneekjecpiobfkbfcibi
Oficjalny URL https://chrome.google.com/webstore/detail/youtube-dislike-count-ext/ihelhpoojojegneekjecpiobfkbfcibi
Opis This extention enables the YouTube dislike count!
Rozmiar pliku 24.13 KB
Liczba instalacji 105
Aktualna Wersja 0.2
Ostatnia Aktualizacja 2022-01-25
Data Publikacji 2022-01-24
Ocena 4.00/5 Łącznie 4 Oceny
Deweloper Ausama95
E-mail [email protected]
Typ Płatności free
Obsługiwane Języki 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\/*"
            ]
        }
    ]
}