-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathmanifest.json
41 lines (36 loc) · 1.1 KB
/
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
41
{
"manifest_version": 2,
"name": "Trello Card Counter",
"short_name": "Card Counter",
"version": "1.3",
"author": "Adam Jaamour",
"description": " An elegant Trello extension that directly integrates into any Trello board to count the total number of cards in the board and individual columns.",
"homepage_url": "https://github.com/Trello-Card-Counter/Trello-Card-Counter-Mozilla-Extension",
"content_scripts": [{
"matches" : [
"*://*.trello.com/b/*"
],
"js": [
"lib/browser-polyfill.min.js"
]
}],
"icons": {
"24": "icons/with-background/icon24px.png",
"48": "icons/with-background/icon.png",
"96": "icons/with-background/[email protected]",
"192": "icons/with-background/[email protected]"
},
"permissions": [
"activeTab"
],
"browser_action": {
"default_icon": {
"24": "icons/with-background/icon24px.png",
"48": "icons/with-background/icon.png",
"96": "icons/with-background/[email protected]",
"192": "icons/with-background/[email protected]"
},
"default_title": "Trello Card Counter",
"default_popup": "popup/popup.html"
}
}