YouTube NoAds!
The add-on blocks ads presented in videos on youtube.
什麼是YouTube NoAds!?
YouTube NoAds!是由info開發的Chrome擴展程式,該擴展的主要功能是“The add-on blocks ads presented in videos on youtube.”。
擴展截圖
下載YouTube NoAds!擴展crx文件
下載YouTube NoAds!擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
The add-on blocks ads presented in videos on youtube. The ad blocker consists in automatically selecting the 'skip ads' button when it becomes active. 擴展基本資訊
| 名稱 | |
| ID | plohhfnpbopkgjhbaljjepioomefkaog |
| 官方網址 | https://chrome.google.com/webstore/detail/youtube-noads/plohhfnpbopkgjhbaljjepioomefkaog |
| 簡介 | The add-on blocks ads presented in videos on youtube. |
| 檔案大小 | 166 KB |
| 安裝次數 | 761 |
| 目前版本 | 2.0.0 |
| 更新時間 | 2022-11-30 |
| 上架時間 | 2022-11-30 |
| 評分 | 4.50/5 共 2 次評分 |
| 開發者 | info |
| 電子郵箱 | [email protected] |
| 付費類型 | free |
| 支援的語言 | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"name": "YouTube NoAds!",
"description": "The add-on blocks ads presented in videos on youtube.",
"manifest_version": 3,
"version": "2.0.0",
"background": {
"service_worker": "src\/service_worker.js"
},
"content_scripts": [
{
"matches": [
"*:\/\/*\/*"
],
"js": [
"src\/content_scripts.js"
],
"run_at": "document_end",
"all_frames": true
}
],
"permissions": [
"alarms",
"storage",
"webRequest"
],
"host_permissions": [
"*:\/\/*\/*"
],
"web_accessible_resources": [
{
"resources": [
"*"
],
"matches": [
"*:\/\/*\/*"
]
}
],
"icons": {
"128": "resource\/youtube(3).png"
}
} | |