forked from chrome-extension/brave-chrome-trello-extension
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmanifest.json
40 lines (35 loc) · 883 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
40
{
"manifest_version": 2,
"name": "TrelloMe!",
"description": "Creating new Trello cards from Web pages made easy.",
"version": "1.0.1",
"author": "mawrkus <web@sparring-partner.be>",
"icons": {
"16": "icons/trello-logo-16.png",
"32": "icons/trello-logo-32.png",
"48": "icons/trello-logo-48.png",
"96": "icons/trello-logo-96.png"
},
"permissions": [
"activeTab",
"contextMenus",
"notifications",
"storage",
"https://api.trello.com/"
],
"background": {
"scripts": [
"background/HttpRequest.js",
"background/Menus.js",
"background/Notifier.js",
"background/Scripting.js",
"background/Storage.js",
"background/background.js"
]
},
"browser_action": {
"default_icon": "icons/trello-logo-32.png",
"default_title": "TrelloMe!",
"default_popup": "popup/popup.html"
}
}