-
Notifications
You must be signed in to change notification settings - Fork 29
/
manifest.json
executable file
·53 lines (46 loc) · 1.25 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
42
43
44
45
46
47
48
49
50
51
52
53
{
"update_url": "https://clients2.google.com/service/update2/crx",
"manifest_version": 2,
"name": "Pro for Trello, FREE Trello tweaks",
"short_name": "Pro for Trello",
"description": "Ultimate FREE tweaks for Trello users! Your Trello boards on steroids!",
"version": "2.0.2",
"icons": {
"16": "img/16x16.png",
"24": "img/24x24.png",
"32": "img/32x32.png",
"48": "img/48x48.png",
"64": "img/64x64.png",
"128": "img/128x128.png",
"256": "img/256x256.png",
"512": "img/512x512.png"
},
"permissions": [
"*://trello.com/*", "tabs", "storage"
],
"web_accessible_resources": [
"img/*",
"css/*",
"tmpl/*",
"docs/*",
"lib/*"
],
"background": {
"scripts": ["js/events.js"],
"persistent": false
},
"content_scripts": [{
"matches": ["*://trello.com/*"],
"js": [
"lib/jquery-3.0.0.min.js",
"js/config.js",
"js/trello-pro.js",
"js/donate.js"
],
"css": [
"css/trello-pro.css"
],
"run_at": "document_idle",
"all_frames": true
}]
}