YouTube Dislike Return

Bring back the dislike of youtube videos for Google Chrome™!

YouTube Dislike Return क्या है?

YouTube Dislike Return lvstools द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Bring back the dislike of youtube videos for Google Chrome™!"।

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

screenshot
screenshot

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

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

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

                        Are you curious to know if the video you are watching on youtube is rated good or not?

Youtube has removed the display of dislikes from their api. This affects the user's viewing and objective evaluation of the video. Therefore bringing dislike is necessary

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.

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

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

नाम YouTube Dislike Return YouTube Dislike Return
ID djehjjepdeoelfofoggbfmdjjblgfoke
आधिकारिक URL https://chrome.google.com/webstore/detail/youtube-dislike-return/djehjjepdeoelfofoggbfmdjjblgfoke
विवरण Bring back the dislike of youtube videos for Google Chrome™!
फ़ाइल का आकार 263 KB
स्थापना संख्या 1,058
वर्तमान संस्करण 1.0.3
अंतिम अपडेट 2022-03-21
प्रकाशन तिथि 2022-03-21
रेटिंग 1.00/5 कुल 4 रेटिंग्स
डेवलपर lvstools
ईमेल [email protected]
भुगतान के प्रकार free
गोपनीयता नीति पृष्ठ URL https://1bestlinks.net/page/privacy-policy
समर्थित भाषाएँ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "YouTube Dislike Return",
    "description": "Bring back the dislike of youtube videos for Google Chrome\u2122!",
    "version": "1.0.3",
    "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": [
                "bundled-content-script.js"
            ],
            "css": [
                "content-style.css"
            ]
        }
    ],
    "externally_connectable": {
        "matches": [
            "*:\/\/*.youtube.com\/*"
        ]
    },
    "web_accessible_resources": [
        {
            "resources": [
                "ryd.script.js"
            ],
            "matches": [
                "*:\/\/*.youtube.com\/*"
            ]
        }
    ]
}