-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathmanifest.json
executable file
·41 lines (41 loc) · 1.09 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
{
"name": "Workbench Tools for Google Chrome™",
"description": "Google Chrome™ extension for logging into Workbench from an active Salesforce session.",
"version": "1.4.0",
"background": {
"service_worker": "background.js"
},
"manifest_version": 3,
"icons": {
"48": "workbench-3-black-cube-48x48.png",
"128": "workbench-3-cube-128x128.png"
},
"options_page": "options.html",
"permissions": [
"cookies",
"declarativeContent",
"notifications",
"scripting",
"storage",
"tabs"
],
"host_permissions": [
"https://*.salesforce.com/*",
"https://*.force.com/*"
],
"content_scripts" : [
{
"matches" : [
"https://*.salesforce.com/*",
"https://*.force.com/*"
],
"js" : ["showPageAction.js"],
"run_at" : "document_end",
"all_frames" : false
}
],
"action": {
"default_title": "Login to Workbench from Salesforce",
"default_icon": "workbench-3-black-cube-48x48.png"
}
}