-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathmanifest.json
37 lines (33 loc) · 993 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
{
"name": "IDN Notification",
"version": "1.0",
"description": "Notifies when IDN domain is visited",
"manifest_version": 2,
"incognito": "split",
"permissions": ["tabs", "webNavigation"],
"page_action": {
"default_icon": {
"16": "images/grey-16.png",
"24": "images/grey-24.png",
"32": "images/grey-32.png",
"64": "images/grey-64.png",
"128": "images/grey-128.png",
"256": "images/grey-256.png",
"512": "images/grey-512.png"
},
"default_title": "IDN domain detector",
"default_popup": "popup.html"
},
"icons": {
"16": "images/grey-16.png",
"24": "images/grey-24.png",
"32": "images/grey-32.png",
"64": "images/grey-64.png",
"128": "images/grey-128.png",
"256": "images/grey-256.png",
"512": "images/grey-512.png"
},
"background": {
"scripts" : ["js/background.js"]
}
}