-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmanifest.json
More file actions
33 lines (33 loc) · 876 Bytes
/
manifest.json
File metadata and controls
33 lines (33 loc) · 876 Bytes
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
{
"manifest_version": 3,
"name": "Salesforce Auto-API",
"version": "3.1",
"description": "Convierte automáticamente nombres de campos de Salesforce en API Names en snake_case o cammelCase.",
"permissions": [],
"host_permissions": [
"https://*.salesforce.com/*",
"https://*.salesforce-setup.com/*",
"https://*.lightning.force.com/*"
],
"action": {
"default_popup": "index.html",
"default_icon": "/imgs/icon_logo.png"
},
"icons": {
"16": "/imgs/icon_logo.png",
"48": "/imgs/icon_logo.png",
"128": "/imgs/icon_logo.png"
},
"content_scripts": [
{
"matches": [
"https://*.salesforce.com/*",
"https://*.salesforce-setup.com/*",
"https://*.lightning.force.com/*"
],
"js": ["content/content.js"],
"all_frames": true,
"run_at": "document_idle"
}
]
}