Return YouTube Dislike Count™

Show Youtube Dislike Count Again!

Co to jest Return YouTube Dislike Count™?

Return YouTube Dislike Count™ to rozszerzenie Chrome opracowane przez w3technic, a jego główną funkcją jest „Show Youtube Dislike Count Again!”.

Zrzuty ekranu rozszerzenia

screenshot

Pobierz plik CRX rozszerzenia Return YouTube Dislike Count™

Pobierz pliki rozszerzeń Return YouTube Dislike Count™ w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        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]                    

Podstawowe informacje o rozszerzeniu

Nazwa Return YouTube Dislike Count™ Return YouTube Dislike Count™
ID khilmfjhfhdigjjeajfofflkehemimkn
Oficjalny URL https://chrome.google.com/webstore/detail/return-youtube-dislike-co/khilmfjhfhdigjjeajfofflkehemimkn
Opis Show Youtube Dislike Count Again!
Rozmiar pliku 20.63 KB
Liczba instalacji 3,794
Aktualna Wersja 2.0.0.2
Ostatnia Aktualizacja 2021-12-15
Data Publikacji 2021-12-12
Ocena 3.28/5 Łącznie 29 Oceny
Deweloper w3technic
E-mail [email protected]
Typ Płatności free
Strona Rozszerzenia https://www.w3technic.com/free-chrome-extensions/return-youtube-dislike-count-chrome-extension/
Adres URL Strony Pomocy https://www.w3technic.com/free-chrome-extensions/return-youtube-dislike-count-chrome-extension/
Adres URL Strony Polityki Prywatności https://w3technic.com/privacy-policy
Obsługiwane Języki 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\/*"
            ]
        }
    ]
}