forked from GonzaloTorreras/HubSpot-Developer-Extension
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathmanifest.json
More file actions
97 lines (97 loc) · 1.88 KB
/
manifest.json
File metadata and controls
97 lines (97 loc) · 1.88 KB
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
{
"manifest_version": 3,
"default_locale": "en",
"name": "HS Developer Extension",
"version": "2.0.6",
"description": "HS Developer Extension",
"icons": {
"16": "src/images/icon-16.png",
"48": "src/images/icon-48.png",
"128": "src/images/icon-128.png"
},
"action": {
"default_popup": "src/popup/popup.html",
"default_icon": "src/images/icon-48.png"
},
"background": {
"service_worker": "src/background.js"
},
"permissions": [
"tabs",
"storage",
"activeTab",
"scripting"
],
"optional_permissions": [],
"host_permissions": [
"https://app.hubspot.com/*",
"https://app.hubspotqa.com/*",
"https://local.hubspot.com/*",
"https://local.hubspotqa.com/*",
"https://*/*",
"http://*/*"
],
"content_scripts": [
{
"matches": [
"*://local.hubspot.com/*",
"*://local.hubspotqa.com/*",
"*://app.hubspot.com/*",
"*://app.hubspotqa.com/*",
"*://login.hubspot.com/*"
],
"js": [
"src/design-manager.js"
],
"css": [
"src/css/hs-dark-ide.css",
"src/css/hs-dark-theme.css"
]
},
{
"run_at": "document_idle",
"css": [
"src/css/json-formatter.css"
],
"matches": [
"https://*/___context___*"
]
},
{
"matches": [
"<all_urls>"
],
"js": [
"src/hs-dev-tools.js"
]
}
],
"devtools_page": "src/devtools/devtools.html",
"options_page": "src/options/options.html",
"commands": {
"bust-cache": {
"suggested_key": {
"default": "Alt+Shift+1",
"mac": "Alt+Shift+1"
},
"description": "Run Cache Buster"
},
"hs-debug": {
"suggested_key": {
"default": "Alt+Shift+2",
"mac": "Alt+Shift+2"
},
"description": "Toggle ?hsDebug=True in the URL"
}
},
"web_accessible_resources": [
{
"resources": [
"src/content.json"
],
"matches": [
"*://*/*"
]
}
]
}