Return YouTube Dislike Button

Returns ability to see dislikes on YouTube

Was ist Return YouTube Dislike Button?

Return YouTube Dislike Button ist eine Chrome-Erweiterung, die von AdDev entwickelt wurde, und ihr Hauptmerkmal ist "Returns ability to see dislikes on YouTube".

Erweiterungsscreenshots

screenshot
screenshot

Return YouTube Dislike Button-Erweiterungs-CRX-Datei herunterladen

Laden Sie Return YouTube Dislike Button-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        Returns ability to see dislike statistics and rating bar.

Shows full (not-shortened) likes and dislikes on hover over rating bar.


YouTube is hiding Youtube Dislikes from everyone except the creator itself. But in the mean time, we can use Youtube Data v3 API to fetch dislikes of a video and show it to the consumer (you). Youtube will break this by 30th December, but Yt Dislikes viewer comes with an archive API that automatically fetches dislikes of every video you watch (after installing the extension) and saves it into an open-sourced database (only the video ID and dislike count, none of your data). In future, we have many big plans for this as well.                    

Grundlegende Informationen zur Erweiterung

Name Return YouTube Dislike Button Return YouTube Dislike Button
ID hkipgenlhedgfkjlajomnhaiafnhnjjf
Offizielle URL https://chrome.google.com/webstore/detail/return-youtube-dislike-bu/hkipgenlhedgfkjlajomnhaiafnhnjjf
Beschreibung Returns ability to see dislikes on YouTube
Dateigröße 17.98 KB
Installationsanzahl 6,970
Aktuelle Version 2.1
Letztes Update 2023-02-22
Veröffentlichungsdatum 2021-12-02
Bewertung 3.27/5 Insgesamt 22 Bewertungen
Entwickler AdDev
E-Mail [email protected]
Zahlungsart free
Hilfeseite URL https://pastebin.com/raw/AdhZ19M3
URL der Datenschutzrichtlinien-Seite https://www.amann.com/meta/privacy-policy
Unterstützte Sprachen en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Return YouTube Dislike Button",
    "description": "Returns ability to see dislikes on YouTube",
    "version": "2.1",
    "manifest_version": 3,
    "background": {
        "service_worker": "return-youtube-dislike.background.js"
    },
    "icons": {
        "48": "icons\/icon48.png",
        "128": "icons\/icon128.png"
    },
    "host_permissions": [
        "*:\/\/*.youtube.com\/*"
    ],
    "action": {
        "default_popup": "popup.html"
    },
    "oauth2": {
        "client_id": "292556337651-kbmq2pduaejrol457a5s1089ut6ug0u9.apps.googleusercontent.com",
        "scopes": [
            "openid"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.youtube.com\/*"
            ],
            "js": [
                "return-youtube-dislike.content-script.js"
            ],
            "run_at": "document_start",
            "css": [
                "content-style.css"
            ]
        }
    ],
    "externally_connectable": {
        "matches": [
            "*:\/\/*.youtube.com\/*"
        ]
    },
    "web_accessible_resources": [
        {
            "resources": [
                "return-youtube-dislike.script.js"
            ],
            "matches": [
                "*:\/\/*.youtube.com\/*"
            ]
        }
    ]
}