YT End Cards Hider
YT End Cards Hider
什么是YT End Cards Hider?
YT End Cards Hider是由Ayudh Kumar Gupta开发的Chrome扩展程序,该扩展的主要功能是“YT End Cards Hider”。
扩展截图
下载YT End Cards Hider扩展crx文件
下载YT End Cards Hider扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
Hide annoying End Cards from YouTube videos. Remove suggested videos that show up as thumbnails at the end of a YouTube video with this simple extension. 扩展基本信息
| 名称 | |
| ID | jokabnhdpdjkpncammcloeagdnnooima |
| 官方URL | https://chromewebstore.google.com/detail/yt-end-cards-hider/jokabnhdpdjkpncammcloeagdnnooima |
| 简介 | YT End Cards Hider |
| 文件大小 | 12.68 KB |
| 安装次数 | 1,100 |
| 当前版本 | 1.0 |
| 更新时间 | 2020-05-07 |
| 上架时间 | 2020-05-07 |
| 评分 | 4.73/5 共15次评分 |
| 开发者 | Ayudh Kumar Gupta |
| 电子邮箱 | [email protected] |
| 付费类型 | free |
| 支持的语言 | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"name": "YT End Cards Hider",
"version": "1.0",
"description": "YT End Cards Hider",
"manifest_version": 2,
"browser_action": {
"default_popup": "popup.html"
},
"permissions": [
"activeTab",
"storage",
"tabs",
"http:\/\/*\/",
"https:\/\/*\/"
],
"content_scripts": [
{
"matches": [
"*:\/\/*\/*"
],
"js": [
"content.js"
]
}
],
"icons": {
"16": "icons\/icon16.png",
"32": "icons\/icon32.png",
"48": "icons\/icon48.png",
"128": "icons\/icon128.png"
},
"background": {
"scripts": [
"background.js"
],
"persistent": false
}
} | |