YouTube Dislike Return

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

Τι είναι το YouTube Dislike Return;

Το YouTube Dislike Return είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον lvstools, και η κύρια λειτουργία του είναι "Bring back the dislike of youtube videos for Google Chrome™!".

Στιγμιότυπα Επέκτασης

screenshot
screenshot

Λήψη αρχείου CRX της επέκτασης YouTube Dislike Return

Λήψη αρχείων επέκτασης YouTube Dislike Return σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.

Οδηγίες Χρήσης της Επέκτασης

                        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\/*"
            ]
        }
    ]
}