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 |
| 官方網址 | 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"
}
]
} | |