-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathmanifest.json
43 lines (43 loc) · 1.06 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
{
"name": "SRF Tools",
"description": "Little helper for SRF developers and CMS users",
"version": "1.3.5",
"manifest_version": 3,
"action": {
"default_icon": {
"32": "/assets/tool_box32.png",
"48": "/assets/tool_box48.png",
"64": "/assets/tool_box64.png",
"128": "/assets/tool_box128.png"
},
"default_popup": "html/popup.html"
},
"content_scripts": [
{
"matches": [
"*://*.srf.ch/*",
"*://*.rtr.ch/*",
"*://jira.srg.beecollaboration.com/*"
],
"js" : [
"scripts/content_scripts/banner.js",
"scripts/content_scripts/contentInfoGatherer.js",
"scripts/content_scripts/daily.js",
"scripts/content_scripts/experiments.js"
],
"css" : ["styles/injected.css"],
"run_at": "document_end"
}
],
"options_page": "html/options.html",
"permissions": [
"tabs",
"storage"
],
"icons": {
"32": "/assets/tool_box32.png",
"48": "/assets/tool_box48.png",
"64": "/assets/tool_box64.png",
"128": "/assets/tool_box128.png"
}
}