-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathmanifest.json
executable file
·92 lines (92 loc) · 2.03 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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
{
"manifest_version": 2,
"name": "Notefox: Websites notes",
"author": "Saverio Morelli (Sav22999)",
"version": "4.1.0.3",
"description": "Take notes on every website in a smart and simple way!",
"icons": {
"16": "./img/icon.svg",
"24": "./img/icon.svg",
"48": "./img/icon.svg",
"96": "./img/icon.svg"
},
"commands": {
"_execute_browser_action": {
"suggested_key": {
"default": "Ctrl+Alt+O"
},
"description": "Open Notefox popup with the default tab"
},
"opened-by-domain": {
"suggested_key": {
"default": "Ctrl+Alt+D"
},
"description": "Open Notefox popup with the current domain tab"
},
"opened-by-page": {
"suggested_key": {
"default": "Ctrl+Alt+P"
},
"description": "Open Notefox popup with the current page tab"
}
},
"browser_specific_settings": {
"gecko": {
"id": "[email protected]",
"strict_min_version": "58.0"
}
},
"browser_action": {
"browser_style": true,
"default_icon": {
"16": "./img/icon.svg",
"24": "./img/icon.svg",
"48": "./img/icon.svg",
"96": "./img/icon.svg"
},
"theme_icons": [
{
"dark": "./img/icon.svg",
"light": "./img/icon.svg",
"size": 16
},
{
"dark": "./img/icon.svg",
"light": "./img/icon.svg",
"size": 24
},
{
"dark": "./img/icon.svg",
"light": "./img/icon.svg",
"size": 48
},
{
"dark": "./img/icon.svg",
"light": "./img/icon.svg",
"size": 96
}
],
"default_title": "Notefox: Websites notes",
"default_popup": "./popup.html"
},
"permissions": [
"storage",
"tabs",
"unlimitedStorage",
"activeTab"
],
"optional_permissions": [
"<all_urls>",
"downloads"
],
"background": {
"scripts": [
"./js/background.js",
"./js/api-service.js"
],
"persistent": true
},
"options_ui": {
"page": "./settings/index.html"
}
}