-
Notifications
You must be signed in to change notification settings - Fork 1
/
manifest.json
39 lines (39 loc) · 866 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
39
{
"manifest_version": 2,
"name": "__MSG_extName__",
"description": "__MSG_extDescription__",
"author" : "__MSG_extAuthor__",
"version": "0.2.1",
"default_locale": "en",
"content_scripts": [
{
"matches": [
"<all_urls>"
],
"js": [
"/js/content.js"
],
"run_at": "document_end"
}
],
"background": {
"scripts": [
"/js/background.js"
]
},
"browser_action": {
"default_name": "__MSG_extName__",
"default_icon": "img/logo.png",
"default_popup": "ui/popup.html"
},
"icons": {
"16": "img/logo.png",
"48": "img/logo.png",
"128": "img/logo.png"
},
"permissions": [
"tabs",
"storage"
],
"manifest_version": 2
}