Return YouTube Dislikes Counter

Returning the ability to see the number of dislikes

Apa itu Return YouTube Dislikes Counter?

Return YouTube Dislikes Counter adalah ekstensi Chrome yang dikembangkan oleh Kronus, dan fitur utamanya adalah "Returning the ability to see the number of dislikes".

Screenshot Ekstensi

screenshot
screenshot

Unduh Berkas CRX Ekstensi Return YouTube Dislikes Counter

Unduh file ekstensi Return YouTube Dislikes Counter dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.

Petunjuk Penggunaan Ekstensi

                        The extension returns the ability to see how many people have put dislikes.                    

Informasi Dasar Ekstensi

Nama Return YouTube Dislikes Counter Return YouTube Dislikes Counter
ID oljgiamaflelpmdlmdjpooahpmiobclo
URL Resmi https://chrome.google.com/webstore/detail/return-youtube-dislikes-c/oljgiamaflelpmdlmdjpooahpmiobclo
Deskripsi Returning the ability to see the number of dislikes
Ukuran File 16.96 KB
Jumlah Instalasi 161
Versi Saat Ini 1.2
Terakhir Diperbarui 2021-12-23
Tanggal Publikasi 2021-11-30
Pengembang Kronus
Email [email protected]
Tipe Pembayaran free
Bahasa yang Didukung en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Return YouTube Dislikes Counter",
    "description": "Returning the ability to see the number of dislikes",
    "version": "1.2",
    "manifest_version": 3,
    "background": {
        "service_worker": "ryd.background.js"
    },
    "icons": {
        "64": "icons\/icon64.png",
        "128": "icons\/icon128.png"
    },
    "host_permissions": [
        "*:\/\/*.youtube.com\/*"
    ],
    "permissions": [
        "storage"
    ],
    "action": {
        "default_popup": "popup.html"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/youtube.com\/*",
                "*:\/\/www.youtube.com\/*",
                "*:\/\/m.youtube.com\/*"
            ],
            "exclude_matches": [
                "*:\/\/*.music.youtube.com\/*"
            ],
            "js": [
                "bundled-content-script.js"
            ],
            "css": [
                "content-style.css"
            ]
        }
    ],
    "externally_connectable": {
        "matches": [
            "*:\/\/*.youtube.com\/*"
        ]
    },
    "web_accessible_resources": [
        {
            "resources": [
                "ryd.script.js"
            ],
            "matches": [
                "*:\/\/*.youtube.com\/*"
            ]
        }
    ]
}