-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmanifest.json
31 lines (31 loc) · 967 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
{
"manifest_version": 2,
"name": "Messages for Web",
"version": "0.1.1",
"description": "Android Messages for Web implemented in a clean popup window, removing the browser clutter and letting you focus on the web app.",
"content_scripts": [{
"matches": [
"<all_urls>"
],
"js": ["content.js"]
}],
"permissions": ["declarativeContent", "tabs"],
"background": {
"scripts": ["background.js"],
"persistent": false
},
"browser_action": {
"default_icon": {
"16": "assets/messages-icon-16.png",
"32": "assets/messages-icon-32.png",
"64": "assets/messages-icon-64.png",
"128": "assets/messages-icon-128.png"
}
},
"icons": {
"16": "assets/messages-icon-16.png",
"32": "assets/messages-icon-32.png",
"64": "assets/messages-icon-64.png",
"128": "assets/messages-icon-128.png"
}
}