-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathmanifest.json
36 lines (36 loc) · 865 Bytes
/
manifest.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
{
"manifest_version": 2,
"name": "WebExtension Experiment Tags",
"applications": {
"gecko": {
"id": "[email protected]"
}
},
"version": "0.1",
"description": "WebExtension Experiment API to get access/read bookmark tags in Firefox.",
"homepage_url": "https://github.com/azappella/webextension-experiment-tags",
"permissions": [
"bookmarks",
"tabs"
],
"icons": {
"64": "icons/tags-icon.png"
},
"browser_action": {
"default_icon": "icons/tags.png",
"default_title": "Tags!"
},
"background": {
"scripts": ["src/background.js"]
},
"experiment_apis": {
"tags": {
"schema": "experiments/tags/schema.json",
"parent": {
"scopes": ["addon_parent"],
"script": "experiments/tags/api.js",
"paths": [["experiments", "tags"]]
}
}
}
}