Sponsor Blocker
Skip sponsored ads in youtube videos.
什么是Sponsor Blocker?
Sponsor Blocker是由Cloud9 Web Services开发的Chrome扩展程序,该扩展的主要功能是“Skip sponsored ads in youtube videos.”。
扩展截图
下载Sponsor Blocker扩展crx文件
下载Sponsor Blocker扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
Extension attempts to block sponsorships on youtube videos.
Currently extension is in beta. Only few podcast-type youtube channels are supported. 扩展基本信息
| 名称 | |
| ID | pjoibejadaddgagcjlibeacpnngdhlhi |
| 官方URL | https://chromewebstore.google.com/detail/sponsor-blocker/pjoibejadaddgagcjlibeacpnngdhlhi |
| 简介 | Skip sponsored ads in youtube videos. |
| 文件大小 | 1.98 MB |
| 安装次数 | 695 |
| 当前版本 | 1.3 |
| 更新时间 | 2021-08-13 |
| 上架时间 | 2021-03-01 |
| 评分 | 5.00/5 共1次评分 |
| 开发者 | Cloud9 Web Services |
| 电子邮箱 | [email protected] |
| 付费类型 | free |
| 支持的语言 | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 2,
"name": "Sponsor Blocker",
"version": "1.3",
"description": "Skip sponsored ads in youtube videos.",
"permissions": [
"tabs",
"storage",
"http:\/\/www.youtube.com\/*",
"https:\/\/www.youtube.com\/*"
],
"browser_action": {
"default_icon": {
"16": "images\/v2_16.png",
"32": "images\/v2_32.png",
"48": "images\/v2_48.png",
"128": "images\/v2_128.png"
},
"default_title": "Sponsor Blocker",
"default_popup": "pages\/popup.html"
},
"icons": {
"16": "images\/v2_16.png",
"32": "images\/v2_32.png",
"48": "images\/v2_48.png",
"128": "images\/v2_128.png"
},
"background": {
"scripts": [
"background.js"
],
"persistent": true
},
"content_scripts": [
{
"matches": [
"https:\/\/www.youtube.com\/*",
"http:\/\/www.youtube.com\/*"
],
"js": [
"run.js"
],
"run_at": "document_end"
}
]
} | |