-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmanifest.json
More file actions
58 lines (57 loc) · 1.13 KB
/
manifest.json
File metadata and controls
58 lines (57 loc) · 1.13 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
{
"manifest_version": 3,
"name": "SDEC Extras V2",
"description": "Extension pour SDEC Coba",
"version": "2.0.0",
"icons": {
"16": "images/icon-16.png",
"32": "images/icon-32.png",
"48": "images/icon-48.png",
"128": "images/icon-128.png"
},
"action": {
"default_popup": "pages/popup.html"
},
"options_ui": {
"page": "pages/options.html",
"open_in_tab": true
},
"content_scripts": [
{
"js": ["scripts/common_content.js"],
"css": ["styles/styles.css"],
"matches": [
"https://sdec.coba.ca/*/*"
]
},
{
"js": ["scripts/login_content.js"],
"matches": [
"https://sdec.coba.ca/*/login.*",
"https://sdec.coba.ca/*/logout.*"
]
},
{
"js": ["scripts/main_content.js"],
"matches": [
"https://sdec.coba.ca/*/index.*"
]
}
],
"web_accessible_resources": [
{
"resources": [
"/images/*",
"/styles/*",
"/themes/*",
"/scripts/*",
"/pages/*"
],
"matches": ["<all_urls>"]
}
],
"permissions": [
"storage",
"clipboardWrite"
]
}