-
Notifications
You must be signed in to change notification settings - Fork 0
/
manifest.json
34 lines (34 loc) · 1.11 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
{
"description": "Turn Notion into your online lecture sidekick.",
"manifest_version": 3,
"background": {
"service_worker": "background.js"
},
"content_scripts": [
{
"js": ["constants.js", "utils.js", "packages/interact.js", "recorder.js"],
"matches": ["https://*/*"],
"exclude_matches": ["http://www.notion.so/*", "https://www.notion.so/*"],
"all_frames": true
},
{
"js": ["constants.js", "utils.js", "packages/intro.js", "packages/micromodal.js", "packages/mousetrap.js", "packages/mousetrap-record.js", "packages/mousetrap-pause.js", "content.js"],
"css": ["packages/intro.css"],
"matches": ["http://www.notion.so/*", "https://www.notion.so/*"]
}
],
"action": {
"default_icon": {
"16": "images/icon16.png",
"32": "images/icon32.png",
"192": "images/icon192.png"
},
"default_title": "SideNotion",
"default_popup": "popup/popup.html"
},
"name": "SideNotion",
"permissions": ["activeTab", "tabs", "storage", "clipboardRead"],
"host_permissions": ["<all_urls>"],
"short_name": "SideNotion",
"version": "1.4.1"
}