Return YouTube Dislikes Counter

Returning the ability to see the number of dislikes

Return YouTube Dislikes Counter क्या है?

Return YouTube Dislikes Counter Kronus द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Returning the ability to see the number of dislikes"।

एक्सटेंशन स्क्रीनशॉट्स

screenshot
screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Return YouTube Dislikes Counter एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

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

एक्सटेंशन की मूल जानकारी

नाम Return YouTube Dislikes Counter Return YouTube Dislikes Counter
ID oljgiamaflelpmdlmdjpooahpmiobclo
आधिकारिक URL https://chrome.google.com/webstore/detail/return-youtube-dislikes-c/oljgiamaflelpmdlmdjpooahpmiobclo
विवरण Returning the ability to see the number of dislikes
फ़ाइल का आकार 16.96 KB
स्थापना संख्या 161
वर्तमान संस्करण 1.2
अंतिम अपडेट 2021-12-23
प्रकाशन तिथि 2021-11-30
डेवलपर Kronus
ईमेल [email protected]
भुगतान के प्रकार free
समर्थित भाषाएँ 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\/*"
            ]
        }
    ]
}