Initial Commit
This commit is contained in:
parent
950050ea38
commit
eb02c6f3bd
13 changed files with 718 additions and 0 deletions
32
manifest.json
Normal file
32
manifest.json
Normal file
|
@ -0,0 +1,32 @@
|
|||
{
|
||||
"manifest_version": 2,
|
||||
"name": "AI Filter",
|
||||
"version": "0.1",
|
||||
"default_locale": "en-US",
|
||||
"applications": { "gecko": { "id": "ai-filter@example" } },
|
||||
"background": { "scripts": [ "background.js" ] },
|
||||
"experiment_apis": {
|
||||
"aiFilter": {
|
||||
"schema": "experiment/schema.json",
|
||||
"parent": {
|
||||
"scopes": [ "addon_parent" ],
|
||||
"paths": [ [ "aiFilter" ] ],
|
||||
"script": "experiment/api.js",
|
||||
"events": [ "startup" ]
|
||||
}
|
||||
},
|
||||
"DomContentScript": {
|
||||
"schema": "experiment/DomContentScript/schema.json",
|
||||
"parent": {
|
||||
"scopes": [ "addon_parent" ],
|
||||
"paths": [ [ "DomContentScript" ] ],
|
||||
"script": "experiment/DomContentScript/implementation.js"
|
||||
}
|
||||
}
|
||||
},
|
||||
"options_ui": {
|
||||
"page": "options/options.html",
|
||||
"open_in_tab": false
|
||||
},
|
||||
"permissions": [ "storage" ]
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue