-
Notifications
You must be signed in to change notification settings - Fork 130
/
manifest-template.json
58 lines (58 loc) · 1.36 KB
/
manifest-template.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
{
"name": "Salesforce inspector",
"description": "Productivity tools for Salesforce administrators and developers to inspect data and metadata directly from the Salesforce UI.",
"version": "1.14",
"icons": {
"128": "icon128.png"
},
"applications": {
"gecko": {
"id": "jid1-DBcuAQpfLMcvOQ@jetpack",
"strict_min_version": "60.0"
}
},
"minimum_chrome_version": "61",
"permissions": [
"https://*.salesforce.com/*",
"https://*.force.com/*",
"https://*.cloudforce.com/*",
"https://*.visualforce.com/*",
"cookies"
],
"content_scripts": [
{
"matches": [
"https://*.salesforce.com/*",
"https://*.visual.force.com/*",
"https://*.lightning.force.com/*",
"https://*.cloudforce.com/*",
"https://*.visualforce.com/*"
],
"all_frames": true,
"css": [
"button.css",
"inspect-inline.css"
],
"js": [
"button.js",
"inspect-inline.js"
]
}
],
"background": {
"scripts": [
"background.js"
]
},
"web_accessible_resources": [
"popup.html",
"data-export.html",
"data-import.html",
"inspect.html",
"metadata-retrieve.html",
"explore-api.html",
"limits.html"
],
"incognito": "replaced-at-build",
"manifest_version": 2
}