Return YouTube Dislike Button

Returns ability to see dislikes on YouTube

Cos'è Return YouTube Dislike Button?

Return YouTube Dislike Button è un'estensione di Chrome sviluppata da AdDev, e la sua funzione principale è "Returns ability to see dislikes on YouTube".

Screenshot dell'Estensione

screenshot
screenshot

Scarica il file CRX dell'estensione Return YouTube Dislike Button

Scarica i file di estensione Return YouTube Dislike Button in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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.                    

Informazioni di Base sull'Estensione

Nome Return YouTube Dislike Button Return YouTube Dislike Button
ID hkipgenlhedgfkjlajomnhaiafnhnjjf
URL Ufficiale https://chrome.google.com/webstore/detail/return-youtube-dislike-bu/hkipgenlhedgfkjlajomnhaiafnhnjjf
Descrizione Returns ability to see dislikes on YouTube
Dimensione del File 17.98 KB
Conteggio Installazioni 6,970
Versione Corrente 2.1
Ultimo Aggiornamento 2023-02-22
Data di Pubblicazione 2021-12-02
Valutazione 3.27/5 Totale 22 Valutazioni
Sviluppatore AdDev
Email [email protected]
Tipo di Pagamento free
URL della Pagina di Aiuto https://pastebin.com/raw/AdhZ19M3
URL della Pagina della Politica sulla Privacy https://www.amann.com/meta/privacy-policy
Lingue Supportate 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\/*"
            ]
        }
    ]
}