-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmanifest.json
66 lines (66 loc) · 1.37 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
{
"manifest_version": 3,
"name": "Salesforce Turbo Debug",
"version": "1.0",
"description": "Quickly insert System.debug statements in Salesforce Apex code",
"content_scripts": [
{
"all_frames": true,
"matches": [
"*://*.salesforce.com/*/apex/debug/ApexCSIPage"
],
"js": [
"content.js"
],
"run_at": "document_start",
"type": "module"
}
],
"web_accessible_resources": [
{
"resources": [
"insert_debug_statement.js"
],
"matches": [
"*://*.salesforce.com/*"
]
}
],
"background": {
"service_worker": "service_worker.js",
"type": "module"
},
"icons": {
"16": "images/icon-16.png",
"32": "images/icon-32.png",
"48": "images/icon-48.png",
"128": "images/icon-128.png"
},
"action": {
"default_popup": "popup/popup.html",
"default_icon": {
"16": "images/icon-16-gray.png",
"32": "images/icon-32-gray.png",
"48": "images/icon-48-gray.png",
"128": "images/icon-128-gray.png"
},
"default_title": "Click Me"
},
"permissions": [
"declarativeContent",
"activeTab",
"scripting",
"storage",
"alarms",
"tabs"
],
"commands": {
"_execute_action": {
"suggested_key": {
"default": "Ctrl+B",
"mac": "Command+B"
}
}
},
"options_page": "options.html"
}