Noads 是一款专门为“屏蔽视频片头广告”而诞生的广告屏蔽扩展;并且还可以高效屏蔽网页上的所有广告,还可以根据用户需求手动屏蔽页面元素。
Premium users can view and search full source code, and see the source code differences
between two versions.
Upgrade to premium
manifest.json
{
"update_url": "https://clients2.google.com/service/update2/crx",
"background": {
"page": "bg.html"
},
"content_scripts": [
{
"all_frames": true,
"js": [
"include.preload.js"
],
"matches": [
"http://*/*",
"https://*/*"
],
"run_at": "document_start"
},
{
"all_frames": true,
"js": [
"include.postload.js"
],
"matches": [
"http://*/*",
"https://*/*"
],
"run_at": "document_end"
}
],
"default_locale": "zh_CN",
"description": "__MSG_description__",
"icons": {
"48": "icons/abp-48.png",
"128": "icons/abp-128.png"
},
"manifest_version": 2,
"minimum_chrome_version": "18.0",
"name": "__MSG_name_b__",
"options_page": "options.html",
"browser_action": {
"default_icon": "icons/abp-128.png",
"default_popup": "popup.html",
"default_title": "__MSG_name__"
},
"content_security_policy": "script-src 'self' 'unsafe-eval' https://ssl.google-analytics.com; object-src 'self'",
"permissions": [
"tabs",
"http://*/*",
"https://*/*",
"contextMenus",
"webRequest",
"webRequestBlocking",
"webNavigation",
"unlimitedStorage",
"notifications"
],
"version": "1.1.1",
"web_accessible_resources": [
"block.html"
]
}