-
Notifications
You must be signed in to change notification settings - Fork 39
/
Copy pathmanifest.json
65 lines (65 loc) · 1.69 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
{
"name": "SP Editor",
"homepage_url": "https://github.com/tavikukko/Chrome-SP-Editor",
"version": "5.6.17",
"description": "Create and update SharePoint Online/SP2013/SP2016/SP2019 css/js files, inject files to web, manage web/list properties, list Webhook",
"icons": {
"16": "icons/icon16.png",
"32": "icons/icon32.png",
"48": "icons/icon48.png",
"96": "icons/icon96.png",
"128": "icons/icon128.png"
},
"browser_action": {
"default_icon": {
"16": "icons/icon16.png",
"32": "icons/icon32.png"
},
"default_popup": "app/popup.html",
"default_title": "SP Editor"
},
"web_accessible_resources": [
"app/js/alertify.js",
"app/js/system.js",
"app/js/common.es5.umd.bundle.js",
"app/js/config-store.es5.umd.bundle.js",
"app/js/graph.es5.umd.bundle.js",
"app/js/logging.es5.umd.bundle.js",
"app/js/odata.es5.umd.bundle.js",
"app/js/pnpjs.es5.umd.bundle.js",
"app/js/adaljsclient.es5.umd.bundle.js",
"app/js/sp-addinhelpers.es5.umd.bundle.js",
"app/js/sp-clientsvc.es5.umd.bundle.js",
"app/js/sp.es5.umd.bundle.js",
"app/js/sp-taxonomy.es5.umd.bundle.js",
"app/panel.html"
],
"devtools_page": "devtools.html",
"background": {
"scripts": [
"app/background.js"
]
},
"content_scripts": [
{
"run_at": "document_end",
"all_frames": true,
"css": [
"app/css/alertify.css"
],
"js": [
"app/content.js"
],
"matches": [
"<all_urls>"
]
}
],
"permissions": [
"tabs",
"activeTab",
"downloads"
],
"content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'",
"manifest_version": 2
}