-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathmanifest.json
42 lines (42 loc) · 1.2 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
{
"name": "Sitecore Author Toolbox",
"version": "7.2.1",
"manifest_version": 3,
"description": "A set of handy tools for Sitecore Authors: Live URL, Grouped errors, Flags, Dark mode, Notifications, Media drag & drop...",
"icons": {
"128": "images/icon_big.png",
"16": "images/icon_small.png"
},
"default_locale": "en",
"background": {
"service_worker": "js/background.js"
},
"permissions": ["activeTab", "tabs", "storage", "downloads", "contextMenus", "cookies", "scripting"],
"host_permissions": ["*://*/*"],
"content_scripts": [
{
"matches": ["<all_urls>"],
"css": ["css/main.min.css"],
"js": ["js/app.js"],
"run_at": "document_end",
"all_frames": true
}
],
"options_ui": {
"page": "options/options.html"
},
"action": {
"default_popup": "options/options.html",
"default_title": "Sitecore Author Toolbox (options)",
"default_icon": "images/icon.png"
},
"content_security_policy": {
"extension_pages": "script-src 'self'; object-src 'self'; "
},
"web_accessible_resources": [
{
"resources": ["images/*", "css/*", "js/*", "audio/*", "options/*", "data/icons.json"],
"matches": ["<all_urls>"]
}
]
}