YouTube Background Ad Skip Extension
Automatically Skip ads on YouTube. This is not an ad blocker
什麼是YouTube Background Ad Skip Extension?
YouTube Background Ad Skip Extension是由Krysp_Coder開發的Chrome擴展程式,該擴展的主要功能是“Automatically Skip ads on YouTube. This is not an ad blocker”。
擴展截圖
下載YouTube Background Ad Skip Extension擴展crx文件
下載YouTube Background Ad Skip Extension擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
Automatically skip YouTube ads when the ad is able to be skipped. When an ad has the option to be skipped within 5 seconds the extension will skip the ad for you immediately. This does not block ads or skip ads that do not originally have the option to be skipped. 擴展基本資訊
| 名稱 | |
| ID | ncbifbdnlggnffchafbdiefobpabajkb |
| 官方網址 | https://chromewebstore.google.com/detail/youtube-background-ad-ski/ncbifbdnlggnffchafbdiefobpabajkb |
| 簡介 | Automatically Skip ads on YouTube. This is not an ad blocker |
| 檔案大小 | 17.34 KB |
| 安裝次數 | 867 |
| 目前版本 | 0.1.1 |
| 更新時間 | 2018-06-20 |
| 上架時間 | 2018-06-20 |
| 評分 | 3.33/5 共 3 次評分 |
| 開發者 | Krysp_Coder |
| 電子郵箱 | [email protected] |
| 付費類型 | free |
| 支援的語言 | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 2,
"name": "YouTube Background Ad Skip Extension",
"short_name": "YBASE",
"version": "0.1.1",
"description": "Automatically Skip ads on YouTube. This is not an ad blocker",
"permissions": [
"tabs"
],
"background": {
"scripts": [
"background.js"
],
"persistent": false,
"matches": [
"https:\/\/www.youtube.com?*"
]
},
"browser_action": {
"default_icon": "images\/media-skip-forward-xxl.png"
},
"icons": {
"16": "images\/media-skip-forward16.png",
"32": "images\/media-skip-forward32.png",
"48": "images\/media-skip-forward48.png",
"128": "images\/media-skip-forward128.png"
},
"content_scripts": [
{
"js": [
"content.js"
],
"matches": [
"https:\/\/www.youtube.com\/watch*"
]
}
]
} | |