Lemonade
This chrome extension displays a Youtube video dislike count
什么是Lemonade?
Lemonade是由Pleasant Tech开发的Chrome扩展程序,该扩展的主要功能是“This chrome extension displays a Youtube video dislike count”。
扩展截图
下载Lemonade扩展crx文件
下载Lemonade扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
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
扩展基本信息
名称 | |
ID | mhhpfoogkccfpmgelmekhghoglpganhp |
官方URL | https://chrome.google.com/webstore/detail/lemonade/mhhpfoogkccfpmgelmekhghoglpganhp |
简介 | This chrome extension displays a Youtube video dislike count |
文件大小 | 23.04 KB |
安装次数 | 54 |
当前版本 | 1.0 |
更新时间 | 2022-01-01 |
上架时间 | 2022-01-01 |
评分 | 5.00/5 共7次评分 |
开发者 | Pleasant Tech |
电子邮箱 | [email protected] |
付费类型 | free |
帮助页面URL | https://twitter.com/pleasantech_ |
支持的语言 | 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" ] } ] } |