-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathmanifest.json
More file actions
executable file
·45 lines (45 loc) · 1.02 KB
/
manifest.json
File metadata and controls
executable file
·45 lines (45 loc) · 1.02 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
{
"name": "Simple Snapshot",
"description": "Write snapshots like Clockwork.",
"version": "2.0.0",
"manifest_version": 2,
"default_locale": "en",
"file_handlers": {
"text": {
"extensions": [
"cw",
"json"
]
}
},
"permissions": [
"clipboardRead",
"clipboardWrite",
"contextMenus",
"fileBrowserHandler",
{
"fileSystem": [
"write",
"retainEntries",
"directory"
]
},
"nativeMessaging",
"identity",
"storage",
"syncFileSystem",
"unlimitedStorage",
"<all_urls>"
],
"icons": { "16": "icons/icon16.png",
"48": "icons/icon48.png",
"128": "icons/icon128.png" },
"offline_enabled": true,
"app": {
"background": {
"scripts": [
"public/background.js"
]
}
}
}