Return YouTube Dislike

Returns ability to see dislikes

Return YouTube Dislike क्या है?

Return YouTube Dislike https://returnyoutubedislike.com द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Returns ability to see dislikes"।

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

screenshot
screenshot

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

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

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

                        Return YouTube Dislike restores the ability to see dislikes on YouTube.

Starting December 13th 2021, YouTube removed the ability to see dislikes from their API.
This extension aims to restore power to users by using a combination of archived like and dislike data, as well as the likes and dislikes made by extension users to show the most accurate ratings.

Currently has almost a billion videos data stored before December 13th, 2021

Actively growing and keeping up to date with uploads after December 13th, 2021

The more users that use the extension, the more accurate it will be

Unpopular videos uploaded after December 13th, 2021 may have less accurate data shown than more popular videos.

This extension is currently in an active development phase, so if you experience any issues, don’t hesitate to report them on our GitHub page or in our Discord server.

More features to come soon! 

https://github.com/Anarios/return-youtube-dislike
https://returnyoutubedislike.com/                    

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

नाम Return YouTube Dislike Return YouTube Dislike
ID gebbhagfogifgggkldgodflihgfeippi
आधिकारिक URL https://chromewebstore.google.com/detail/return-youtube-dislike/gebbhagfogifgggkldgodflihgfeippi
विवरण Returns ability to see dislikes
फ़ाइल का आकार 121 KB
स्थापना संख्या 4,880,279
वर्तमान संस्करण 3.0.0.14
अंतिम अपडेट 2023-12-13
प्रकाशन तिथि 2021-11-19
रेटिंग 4.76/5 कुल 16275 रेटिंग्स
डेवलपर https://returnyoutubedislike.com
ईमेल [email protected]
भुगतान के प्रकार free
एक्सटेंशन वेबसाइट https://www.returnyoutubedislike.com/
सहायता पृष्ठ URL https://www.returnyoutubedislike.com/
समर्थित भाषाएँ de,en,fr,nl,tr,es,it,pl,pt-BR,cs,el,ru,uk,ja,ko
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "__MSG_extensionName__",
    "description": "__MSG_extensionDesc__",
    "default_locale": "en",
    "version": "3.0.0.14",
    "manifest_version": 3,
    "background": {
        "service_worker": "ryd.background.js"
    },
    "icons": {
        "48": "icons\/icon48.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": [
                "ryd.content-script.js"
            ],
            "css": [
                "content-style.css"
            ]
        }
    ],
    "externally_connectable": {
        "matches": [
            "*:\/\/*.youtube.com\/*"
        ]
    },
    "web_accessible_resources": [
        {
            "resources": [
                "ryd.script.js"
            ],
            "matches": [
                "*:\/\/*.youtube.com\/*"
            ]
        }
    ],
    "options_ui": {
        "page": "popup.html",
        "open_in_tab": false
    }
}