Return YouTube Dislike Count™

Show Youtube Dislike Count Again!

Cos'è Return YouTube Dislike Count™?

Return YouTube Dislike Count™ è un'estensione di Chrome sviluppata da w3technic, e la sua funzione principale è "Show Youtube Dislike Count Again!".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione Return YouTube Dislike Count™

Scarica i file di estensione Return YouTube Dislike Count™ 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 dislikes and ratio back to YouTube
This extension returns dislikes and a ratio back to YouTube for those who have been censored by Google in their experiment

- Added dislike count
- Added ratio
- Added detailed information [likes/dislikes]                    

Informazioni di Base sull'Estensione

Nome Return YouTube Dislike Count™ Return YouTube Dislike Count™
ID khilmfjhfhdigjjeajfofflkehemimkn
URL Ufficiale https://chrome.google.com/webstore/detail/return-youtube-dislike-co/khilmfjhfhdigjjeajfofflkehemimkn
Descrizione Show Youtube Dislike Count Again!
Dimensione del File 20.63 KB
Conteggio Installazioni 3,794
Versione Corrente 2.0.0.2
Ultimo Aggiornamento 2021-12-15
Data di Pubblicazione 2021-12-12
Valutazione 3.28/5 Totale 29 Valutazioni
Sviluppatore w3technic
Email [email protected]
Tipo di Pagamento free
Sito Web dell'Estensione https://www.w3technic.com/free-chrome-extensions/return-youtube-dislike-count-chrome-extension/
URL della Pagina di Aiuto https://www.w3technic.com/free-chrome-extensions/return-youtube-dislike-count-chrome-extension/
URL della Pagina della Politica sulla Privacy https://w3technic.com/privacy-policy
Lingue Supportate en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Return YouTube Dislike Count\u2122",
    "description": "Show Youtube Dislike Count Again!",
    "version": "2.0.0.2",
    "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": [
                "ryd.content-script.js",
                "ryd.tools.js",
                "\/init\/init.js"
            ],
            "css": [
                "content-style.css"
            ]
        }
    ],
    "externally_connectable": {
        "matches": [
            "*:\/\/*.youtube.com\/*"
        ]
    },
    "web_accessible_resources": [
        {
            "resources": [
                "ryd.script.js"
            ],
            "matches": [
                "*:\/\/*.youtube.com\/*"
            ]
        }
    ]
}