forked from notionblog/NotionThemes
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmanifest.json
More file actions
33 lines (33 loc) · 724 Bytes
/
Copy pathmanifest.json
File metadata and controls
33 lines (33 loc) · 724 Bytes
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
{
"manifest_version": 2,
"name": "notionthemes",
"version": "0.0.1",
"description": "Beautiful themes for Notion Web.",
"permissions": ["storage", "https://notionthemes.netlify.app/"],
"icons": {
"16": "icons/16.png",
"48": "icons/48.png",
"128": "icons/128.png"
},
"background": {
"scripts": ["background.js"]
},
"content_scripts": [
{
"matches": ["https://www.notion.so/*"],
"js": ["js/content.js"]
}
],
"browser_action": {
"default_title": "Choose a theme",
"default_popup": "popup.html",
"default_icon": {
"19": "icons/16.png",
"38": "icons/48.png"
}
},
"options_ui": {
"page": "options.html",
"open_in_tab": true
}
}