Lemonade
This chrome extension displays a Youtube video dislike count
Wat is Lemonade?
Lemonade is een Chrome-extensie ontwikkeld door Pleasant Tech, en de belangrijkste functie is "This chrome extension displays a Youtube video dislike count".
Extensie Screenshots
Download het CRX-bestand van de extensie Lemonade
Download Lemonade-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.
Instructies voor het Gebruik van de Extensie
This extension adds back the youtube dislike count , the youtube dislike count is the first impression of a video, it's our right to be able to view it, this extension allows you do just that Basisinformatie over de Extensie
| Naam | |
| ID | mhhpfoogkccfpmgelmekhghoglpganhp |
| Officiële URL | https://chrome.google.com/webstore/detail/lemonade/mhhpfoogkccfpmgelmekhghoglpganhp |
| Beschrijving | This chrome extension displays a Youtube video dislike count |
| Bestandsgrootte | 23.04 KB |
| Aantal Installaties | 54 |
| Huidige Versie | 1.0 |
| Laatst Bijgewerkt | 2022-01-01 |
| Publicatiedatum | 2022-01-01 |
| Beoordeling | 5.00/5 Totaal 7 Beoordelingen |
| Ontwikkelaar | Pleasant Tech |
| [email protected] | |
| Betalingswijze | free |
| Help Pagina-URL | https://twitter.com/pleasantech_ |
| Ondersteunde Talen | en-US |
| manifest.json | |
{
"action": {
"default_popup": "popup.html",
"default_icon": {
"16": "logo16.png",
"32": "logo32.png",
"48": "logo48.png",
"128": "logo128.png"
}
},
"icons": {
"16": "logo16.png",
"32": "logo32.png",
"48": "logo48.png",
"128": "logo128.png"
},
"background": {
"service_worker": "ryd.background.js"
},
"content_scripts": [
{
"css": [
"content-style.css"
],
"exclude_matches": [
"*:\/\/*.music.youtube.com\/*"
],
"js": [
"ryd.content-script.js"
],
"matches": [
"*:\/\/youtube.com\/*",
"*:\/\/www.youtube.com\/*",
"*:\/\/m.youtube.com\/*"
]
}
],
"externally_connectable": {
"matches": [
"*:\/\/*.youtube.com\/*"
]
},
"host_permissions": [
"*:\/\/*.youtube.com\/*"
],
"name": "Lemonade",
"description": "This chrome extension displays a Youtube video dislike count",
"version": "1.0",
"manifest_version": 3,
"permissions": [
"storage"
],
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"web_accessible_resources": [
{
"matches": [
"*:\/\/*.youtube.com\/*"
],
"resources": [
"ryd.script.js"
]
}
]
} | |