Lemonade
This chrome extension displays a Youtube video dislike count
Was ist Lemonade?
Lemonade ist eine Chrome-Erweiterung, die von Pleasant Tech entwickelt wurde, und ihr Hauptmerkmal ist "This chrome extension displays a Youtube video dislike count".
Erweiterungsscreenshots
Lemonade-Erweiterungs-CRX-Datei herunterladen
Laden Sie Lemonade-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
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
Grundlegende Informationen zur Erweiterung
Name | |
ID | mhhpfoogkccfpmgelmekhghoglpganhp |
Offizielle URL | https://chrome.google.com/webstore/detail/lemonade/mhhpfoogkccfpmgelmekhghoglpganhp |
Beschreibung | This chrome extension displays a Youtube video dislike count |
Dateigröße | 23.04 KB |
Installationsanzahl | 54 |
Aktuelle Version | 1.0 |
Letztes Update | 2022-01-01 |
Veröffentlichungsdatum | 2022-01-01 |
Bewertung | 5.00/5 Insgesamt 7 Bewertungen |
Entwickler | Pleasant Tech |
[email protected] | |
Zahlungsart | free |
Hilfeseite URL | https://twitter.com/pleasantech_ |
Unterstützte Sprachen | 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" ] } ] } |