Hide Youtube Likes/Dislikes

Hides ratings information on Youtube videos.

Hide Youtube Likes/Dislikes क्या है?

Hide Youtube Likes/Dislikes rmitaldev द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Hides ratings information on Youtube videos."।

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

screenshot
screenshot
screenshot

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

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

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

                        UPDATE 1.0.2: Now handles Youtube's new sentiment bar, where dislikes are already hidden automatically.

This extension gives users the option to hide the number of "likes" on a video and/or the entire sentiment bar on Youtube. Feel free to continue rating videos without worrying what other people think of it, or turn off that feature completely if you want to watch and enjoy videos without any pressure!

NOTE: You will need to restart your browser for the changes to take effect! If you have any other trouble with this extension, please leave a comment in the support page and I will get to you as soon as I can. Thanks!                    

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

नाम Hide Youtube Likes/Dislikes Hide Youtube Likes/Dislikes
ID bndphnggikgjkhappgdnhijgnlafnfph
आधिकारिक URL https://chromewebstore.google.com/detail/hide-youtube-likesdislike/bndphnggikgjkhappgdnhijgnlafnfph
विवरण Hides ratings information on Youtube videos.
फ़ाइल का आकार 73.07 KB
स्थापना संख्या 641
वर्तमान संस्करण 1.0.2
अंतिम अपडेट 2023-05-09
प्रकाशन तिथि 2020-02-24
रेटिंग 4.38/5 कुल 32 रेटिंग्स
डेवलपर rmitaldev
ईमेल [email protected]
भुगतान के प्रकार free
समर्थित भाषाएँ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Hide Youtube Likes\/Dislikes",
    "version": "1.0.2",
    "description": "Hides ratings information on Youtube videos.",
    "manifest_version": 2,
    "permissions": [
        "activeTab",
        "declarativeContent",
        "storage"
    ],
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.youtube.com\/*"
            ],
            "js": [
                "jquery.js",
                "arrive.js",
                "contentscript.js"
            ],
            "run_at": "document_start"
        }
    ],
    "page_action": {
        "default_popup": "popup.html",
        "default_icon": {
            "16": "images\/ico_16.png",
            "32": "images\/ico_32.png",
            "48": "images\/ico_48.png",
            "128": "images\/ico_128.png"
        }
    },
    "icons": {
        "16": "images\/ico_16.png",
        "32": "images\/ico_32.png",
        "48": "images\/ico_48.png",
        "128": "images\/ico_128.png"
    }
}