Return YouTube Dislikes Counter
Returning the ability to see the number of dislikes
Co je Return YouTube Dislikes Counter?
Return YouTube Dislikes Counter je rozšíření Chrome vyvinuté Kronus, a jeho hlavní funkcí je „Returning the ability to see the number of dislikes“.
Snímky obrazovky rozšíření
Stáhnout soubor CRX rozšíření Return YouTube Dislikes Counter
Stáhněte si soubory rozšíření Return YouTube Dislikes Counter ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.
Pokyny pro Použití Rozšíření
The extension returns the ability to see how many people have put dislikes. Základní Informace o Rozšíření
| Název | |
| ID | oljgiamaflelpmdlmdjpooahpmiobclo |
| Oficiální URL | https://chrome.google.com/webstore/detail/return-youtube-dislikes-c/oljgiamaflelpmdlmdjpooahpmiobclo |
| Popis | Returning the ability to see the number of dislikes |
| Velikost souboru | 16.96 KB |
| Počet instalací | 161 |
| Aktuální Verze | 1.2 |
| Poslední Aktualizace | 2021-12-23 |
| Datum Vydání | 2021-11-30 |
| Vývojář | Kronus |
| [email protected] | |
| Typ Platby | free |
| Podporované Jazyky | 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\/*"
]
}
]
} | |