Youtube Dislike Count Extention
This extention enables the YouTube dislike count!
什么是Youtube Dislike Count Extention?
Youtube Dislike Count Extention是由Ausama95开发的Chrome扩展程序,该扩展的主要功能是“This extention enables the YouTube dislike count!”。
扩展截图
下载Youtube Dislike Count Extention扩展crx文件
下载Youtube Dislike Count Extention扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
This extension brings back the ability to be able to see the dislike ratio of any YouTube video.
扩展基本信息
名称 | |
ID | ihelhpoojojegneekjecpiobfkbfcibi |
官方URL | https://chrome.google.com/webstore/detail/youtube-dislike-count-ext/ihelhpoojojegneekjecpiobfkbfcibi |
简介 | This extention enables the YouTube dislike count! |
文件大小 | 24.13 KB |
安装次数 | 105 |
当前版本 | 0.2 |
更新时间 | 2022-01-25 |
上架时间 | 2022-01-24 |
评分 | 4.00/5 共4次评分 |
开发者 | Ausama95 |
电子邮箱 | [email protected] |
付费类型 | free |
支持的语言 | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Youtube Dislike Count Extention", "description": "This extention enables the YouTube dislike count!", "version": "0.2", "manifest_version": 3, "background": { "service_worker": ".\/background.js" }, "options_page": "options.html", "permissions": [ "storage", "scripting" ], "host_permissions": [ "*:\/\/*.youtube.com\/*" ], "action": { "default_popup": "popup.html", "default_icon": { "16": ".\/images\/obj-16x16.png", "32": ".\/images\/obj-32x32.png", "48": ".\/images\/obj-48x48.png", "128": ".\/images\/obj-128x128.png" } }, "icons": { "16": ".\/images\/obj-16x16.png", "32": ".\/images\/obj-32x32.png", "48": ".\/images\/obj-48x48.png", "128": ".\/images\/obj-128x128.png" }, "content_scripts": [ { "matches": [ "*:\/\/*.youtube.com\/*" ], "js": [ "content-script.js" ], "run_at": "document_start", "css": [ "content-style.css" ] } ], "externally_connectable": { "matches": [ "*:\/\/*.youtube.com\/*" ] }, "web_accessible_resources": [ { "resources": [ "script.js" ], "matches": [ "*:\/\/*.youtube.com\/*" ] } ] } |