-
Notifications
You must be signed in to change notification settings - Fork 27
/
Copy pathmanifest.json
69 lines (69 loc) · 2.07 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
67
68
69
{
"manifest_version": 2,
"name": "__MSG_extName__",
"version": "1.05.09",
"default_locale": "en",
"description": "__MSG_extDesc__",
"browser_action": {
"default_popup": "popup.html",
"default_title": "HubSpot Dev Tools",
"default_icon": {
"16": "icon-16.png",
"19": "icon-19.png",
"38": "icon-38.png",
"48": "icon-48.png",
"128": "icon-128.png"
}
},
"icons": {
"16": "icon-16.png",
"19": "icon-19.png",
"38": "icon-38.png",
"48": "icon-48.png",
"128": "icon-128.png"
},
"permissions": [
"storage",
"activeTab"
],
"optional_permissions": [
"https://app.hubspot.com/*",
"https://app.hubspotqa.com/*",
"https://local.hubspot.com/*",
"https://local.hubspotqa.com/*"
],
"web_accessible_resources": [
"mac-text-cursor.svg",
"mac-text-cursor.png"
],
"content_scripts": [{
"run_at": "document_idle",
"js": ["jquery-3.2.1.min.js", "design-manager.js"],
"css": ["hsDarkIde.css"],
"document_idle": "document_start",
"matches": ["https://local.hubspot.com/*", "https://local.hubspotqa.com/*","https://app.hubspot.com/*", "https://app.hubspotqa.com/*","https://login.hubspot.com/*"]
}],
"content_security_policy": "script-src 'self' https://ssl.google-analytics.com; object-src 'self'",
"options_page": "options.html",
"background": {
"persistent": true,
"scripts": ["hot-reload.js", "background.js"]
},
"devtools_page": "devtools.html",
"commands": {
"bust-cache": {
"suggested_key": {
"default": "Ctrl+Shift+1",
"mac": "Ctrl+Shift+1"
},
"description": "Run Cache Buster"
},
"hs-debug": {
"suggested_key": {
"default": "Ctrl+Shift+2",
"mac": "Ctrl+Shift+2"
},
"description": "toggle ?hsDebug=True in the URL"
}
}
}