Dislike YouTube 2021
Bringing back the dislike button on YouTube
什么是Dislike YouTube 2021?
Dislike YouTube 2021是由Cristi开发的Chrome扩展程序,该扩展的主要功能是“Bringing back the dislike button on YouTube”。
扩展截图
下载Dislike YouTube 2021扩展crx文件
下载Dislike YouTube 2021扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
Bringing back the dislike button on YouTube 扩展基本信息
| 名称 | |
| ID | bbnoenijmedeeiknnjfjafdmhhocinjd |
| 官方URL | https://chromewebstore.google.com/detail/dislike-youtube-2021/bbnoenijmedeeiknnjfjafdmhhocinjd |
| 简介 | Bringing back the dislike button on YouTube |
| 文件大小 | 59.41 KB |
| 安装次数 | 39 |
| 当前版本 | 1.0.0 |
| 更新时间 | 2021-12-04 |
| 上架时间 | 2021-12-01 |
| 评分 | 3.50/5 共8次评分 |
| 开发者 | Cristi |
| 电子邮箱 | [email protected] |
| 付费类型 | free |
| 支持的语言 | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 3,
"name": "Dislike YouTube 2021",
"version": "1.0.0",
"minimum_chrome_version": "88",
"icons": {
"48": "thumbs48.png",
"128": "thumbs128.png"
},
"host_permissions": [
"*:\/\/*.youtube.com\/*"
],
"action": {
"default_popup": "popup.html"
},
"background": {
"service_worker": "background.js"
},
"content_scripts": [
{
"matches": [
"*:\/\/*.youtube.com\/watch?v=*"
],
"js": [
"content.js"
],
"run_at": "document_start"
}
],
"externally_connectable": {
"matches": [
"*:\/\/*.youtube.com\/*"
]
},
"web_accessible_resources": [
{
"resources": [
"insert.js"
],
"matches": [
"*:\/\/*.youtube.com\/*"
]
}
]
} | |