Quickstart
Get up and running with the Web Extension Ad-Filtering Solution.
Before you begin
Downloading the libraries
Configuring the manifest file
{
"manifest_version": 2,
"background": {
"scripts": [
"ewe-api.js"
]
},
"content_scripts": [
{
"all_frames": true,
"js": [
"ewe-content.js"
],
"match_about_blank": true,
"matches": [
"http://*/*",
"https://*/*"
],
"run_at": "document_start"
}
],
"permissions": [
"webNavigation",
"webRequest",
"webRequestBlocking",
"unlimitedStorage",
"<all_urls>"
]
}Quick Start
Installing dependencies and build the libraries
Blocking ads
Testing your extension
Serving test pages
Using the test extension
Going further
Module bundlers
Supporting snippet Filters
Incorporating machine learning models
Last updated