Return YouTube Dislikes Counter
Returning the ability to see the number of dislikes
什么是Return YouTube Dislikes Counter?
Return YouTube Dislikes Counter是由Kronus开发的Chrome扩展程序,该扩展的主要功能是“Returning the ability to see the number of dislikes”。
扩展截图
下载Return YouTube Dislikes Counter扩展crx文件
下载Return YouTube Dislikes Counter扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
The extension returns the ability to see how many people have put dislikes.
扩展基本信息
名称 | |
ID | oljgiamaflelpmdlmdjpooahpmiobclo |
官方URL | https://chrome.google.com/webstore/detail/return-youtube-dislikes-c/oljgiamaflelpmdlmdjpooahpmiobclo |
简介 | Returning the ability to see the number of dislikes |
文件大小 | 16.96 KB |
安装次数 | 161 |
当前版本 | 1.2 |
更新时间 | 2021-12-23 |
上架时间 | 2021-11-30 |
开发者 | Kronus |
电子邮箱 | [email protected] |
付费类型 | free |
支持的语言 | 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\/*" ] } ] } |