-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmanifest.json
More file actions
60 lines (60 loc) · 1.33 KB
/
manifest.json
File metadata and controls
60 lines (60 loc) · 1.33 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
{
"manifest_version": 3,
"name": "Ops Toolshed",
"version": "1.2",
"description": "Enhances Prisma functionality and provides quick access to various tools. Built by Harry Barnes.",
"permissions": [
"activeTab",
"storage",
"alarms",
"notifications",
"tabs",
"offscreen",
"scripting",
"clipboardRead",
"clipboardWrite"
],
"host_permissions": [
"https://groupmuk-prisma.mediaocean.com/*"
],
"content_security_policy": {
"extension_pages": "script-src 'self'; style-src 'self' https://cdnjs.cloudflare.com https://fonts.googleapis.com; object-src 'self'"
},
"background": {
"service_worker": "background.js",
"type": "module"
},
"action": {
"default_popup": "popup.html",
"default_icon": {
"16": "icon.png",
"32": "icon.png",
"48": "icon.png",
"128": "icon.png"
}
},
"icons": {
"16": "icon.png",
"32": "icon.png",
"48": "icon.png",
"128": "icon.png"
},
"options_ui": {
"page": "settings.html",
"open_in_tab": true
},
"content_scripts": [
{
"matches": ["*://*.mediaocean.com/*"],
"js": ["content.js"],
"css": ["approvers.css", "content.css"],
"all_frames": true
}
],
"web_accessible_resources": [{
"resources": [
"icon.png"
],
"matches": ["<all_urls>"]
}]
}