forked from men232/plus-for-trello
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmanifest.json
110 lines (109 loc) · 2.85 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
{
"update_url": "https://clients2.google.com/service/update2/crx",
"name": "__MSG_extName__",
"short_name": "Plus for Trello (Fixed)",
"version": "6.5.0",
"manifest_version": 2,
"default_locale": "en",
"description": "__MSG_extDescription__",
"icons": {
"16": "images/icon16.png",
"48": "images/icon48.png",
"128": "images/icon128.png"
},
"offline_enabled": true,
"background": {
"page": "background.html"
},
"homepage_url": "https://www.plusfortrello.com",
"oauth2": {
"client_id": "147493868263-rau69q6puvkskc83li1neonnbo0aelp9.apps.googleusercontent.com",
"scopes": [
"https://spreadsheets.google.com/feeds",
"https://www.googleapis.com/auth/drive.file",
"https://www.googleapis.com/auth/chromewebstore.readonly"
]
},
"browser_action": {
"default_icon": {
"19": "images/icon19.png"
},
"default_title": "Plus for Trello",
"default_popup": "popup.html"
},
"content_scripts": [
{
"all_frames": true,
"matches": ["https://trello.com/*"],
"js": [
"libs/jquery.min.js",
"libs/jquery-ui.custom.min.js",
"libs/jquery.cookie.js",
"libs/jquery.zoomooz.js",
"libs/jsapi.js",
"libs/formatchart.js",
"libs/jquery.grumble.js",
"libs/dialog-polyfill.js",
"libs/jquery.tablesorter.js",
"libs/select2.full.min.js",
"shared.js",
"sharedmobile.js",
"sharedsync.js",
"app.js",
"card.js",
"cardetransfer.js",
"labels.js",
"labels.js",
"language.js",
"help.js",
"buttons.js",
"plus.js",
"plusconfig.js",
"board.js",
"tour.js",
"translations.js"
],
"css": [
"css/style.css",
"css/colors.css",
"css/tooltip.css",
"css/grumble.css",
"css/dialog-polyfill.css",
"css/tablesorter.css",
"css/jquery-ui-custom.min.css",
"css/select2.min.css"
],
"run_at": "document_start"
}
],
"content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'",
"web_accessible_resources": [
"images/*.png",
"images/*.gif",
"*.html",
"manifest.json",
"css/images/*.gif",
"stripe-wrap.js",
"websql/**"
],
"optional_permissions": [
"https://*.stripe.com/",
"https://*.cloudfunctions.net/",
"clipboardWrite",
"https://spreadsheets.google.com/",
"https://ssl.google-analytics.com/",
"https://www.googleapis.com/",
"bookmarks"
],
"permissions": [
"identity",
"storage",
"cookies",
"unlimitedStorage",
"notifications",
"webRequest",
"webRequestBlocking",
"https://trello.com/",
"https://trello.com/1/*"
]
}