Return YouTube Dislikes Counter

Returning the ability to see the number of dislikes

What is Return YouTube Dislikes Counter?

Return YouTube Dislikes Counter is a Chrome extension developed by Kronus, and its main feature is "Returning the ability to see the number of dislikes".

Extension Screenshots

screenshot
screenshot

Download Return YouTube Dislikes Counter Extension CRX File

Download Return YouTube Dislikes Counter extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

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

Extension Basic Information

Name Return YouTube Dislikes Counter Return YouTube Dislikes Counter
ID oljgiamaflelpmdlmdjpooahpmiobclo
Official URL https://chrome.google.com/webstore/detail/return-youtube-dislikes-c/oljgiamaflelpmdlmdjpooahpmiobclo
Description Returning the ability to see the number of dislikes
File Size 16.96 KB
Installation Count 161
Current Version 1.2
Last Updated 2021-12-23
Publish Date 2021-11-30
Developer Kronus
Email [email protected]
Payment Type free
Supported Languages 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\/*"
            ]
        }
    ]
}