-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmanifest.json
More file actions
47 lines (41 loc) · 1.04 KB
/
manifest.json
File metadata and controls
47 lines (41 loc) · 1.04 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
{
"manifest_version": 2,
"name": "Copyboard",
"version": "1.1.1",
"description": "A Firefox sidebar extension for managing quick notes in a post-it style interface. Create, edit, copy, and organize notes with drag and drop.",
"author": "Cris Dias",
"homepage_url": "https://github.com/crisdias/copyboard",
"developer": {
"name": "Cris Dias",
"url": "https://github.com/crisdias"
},
"icons": {
"48": "icons/icon-48.png",
"96": "icons/icon-96.png"
},
"browser_specific_settings": {
"gecko": {
"id": "copyboard@crisdias.com",
"strict_min_version": "79.0",
"data_collection_permissions": {
"required": ["none"]
}
}
},
"permissions": [
"clipboardWrite",
"storage"
],
"sidebar_action": {
"default_title": "Copyboard",
"default_panel": "sidebar/sidebar.html",
"default_icon": "icons/icon-48.png"
},
"browser_action": {
"default_icon": "icons/icon-48.png",
"default_title": "Open Copyboard"
},
"background": {
"scripts": ["background.js"]
}
}