Return YouTube Dislikes Counter
Returning the ability to see the number of dislikes
Co to jest Return YouTube Dislikes Counter?
Return YouTube Dislikes Counter to rozszerzenie Chrome opracowane przez Kronus, a jego główną funkcją jest „Returning the ability to see the number of dislikes”.
Zrzuty ekranu rozszerzenia
Pobierz plik CRX rozszerzenia Return YouTube Dislikes Counter
Pobierz pliki rozszerzeń Return YouTube Dislikes Counter 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
The extension returns the ability to see how many people have put dislikes.
Podstawowe informacje o rozszerzeniu
Nazwa | |
ID | oljgiamaflelpmdlmdjpooahpmiobclo |
Oficjalny URL | https://chrome.google.com/webstore/detail/return-youtube-dislikes-c/oljgiamaflelpmdlmdjpooahpmiobclo |
Opis | Returning the ability to see the number of dislikes |
Rozmiar pliku | 16.96 KB |
Liczba instalacji | 161 |
Aktualna Wersja | 1.2 |
Ostatnia Aktualizacja | 2021-12-23 |
Data Publikacji | 2021-11-30 |
Deweloper | Kronus |
[email protected] | |
Typ Płatności | free |
Obsługiwane Języki | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Return YouTube Dislikes Counter", "description": "Returning the ability to see the number of dislikes", "version": "1.2", "manifest_version": 3, "background": { "service_worker": "ryd.background.js" }, "icons": { "64": "icons\/icon64.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\/*" ] } ] } |