-
Notifications
You must be signed in to change notification settings - Fork 1
/
manifest.json
38 lines (37 loc) · 880 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
37
38
{
"manifest_version": 2,
"name": "Possedex",
"version": "0.1",
"description": "Avec le Possedex, apprenez en un clin d'oeil qui se trouve derrière le média que vous êtes en train de lire !",
"background": {
"scripts": ["background.js", "content.js", "install.js"],
"persistent": false
},
"homepage_url": "http://possedex.info/",
"icons": {
"16": "icon-16.png",
"32": "icon-32.png",
"48": "icon-48.png",
"64": "icon-64.png"
},
"browser_action" :
{
"default_icon" : "icon-64.png",
"default_title" : "Possedex",
"default_popup": "popup.html"
},
"content_scripts": [
{
"matches": ["http://*/*","https://*/*"],
"js": ["content.js"]
}
],
"permissions" : [
"declarativeContent",
"tabs",
"storage",
"notifications",
"activeTab",
"http://possedex.info/database.json"
]
}