-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmanifest.json
More file actions
35 lines (35 loc) · 1014 Bytes
/
manifest.json
File metadata and controls
35 lines (35 loc) · 1014 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
34
35
{
"name": "My Azure Partner Help Extension",
"version": "0.0.4",
"manifest_version": 2,
"description": "You can simplify your work as partners by using this extension",
"browser_action": {
"default_icon": "img/icon128.png",
"icons": { "16": "img/icon16.png",
"48": "img/icon48.png",
"128": "img/icon128.png" },
"scripts": ["jquery-3.4.1.min.js", "popup.js"],
"css": ["css/popup.css"],
"default_popup": "popup.html"
},
"permissions": [
"https://portal.azure.com/*",
"https://afd.hosting.portal.azure.net/",
"https://web.vortex.data.microsoft.com/",
"https://management.azure.com/*",
"https://s2.billing.ext.azure.com/*",
"webRequest",
"webRequestBlocking",
"storage"
],
"content_scripts": [
{
"matches": ["https://ms.portal.azure.com/*", "https://portal.azure.com/*"],
"js": ["jquery-3.4.1.min.js", "script.js"],
"run_at":"document_end"
}
],"background": {
"scripts": ["jquery-3.4.1.min.js", "background.js"],
"persistent": true
}
}