-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathmanifest.json
More file actions
30 lines (30 loc) · 749 Bytes
/
manifest.json
File metadata and controls
30 lines (30 loc) · 749 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
{
"name": "Temporary Bookmarks",
"version": "1.3",
"description": "Automatically delete expired bookmarks in a folder.",
"icons": {
"128": "icons/icon-128.png",
"48": "icons/icon-48.png",
"19": "icons/icon-19.png",
"16": "icons/icon-16.png"
},
"permissions": ["<all_urls>", "bookmarks", "tabs", "storage"],
"options_ui": {
"chrome_style": true,
"open_in_tab": true,
"page": "index.html"
},
"browser_action": {
"default_icon": "icons/icon-19.png",
"default_title": "temporary bookmarks"
},
"background": {
"scripts": ["js/bookmarks.js", "js/background.js"]
},
"commands": {
"add-bookmark": {
"description": "Add bookmarks to the folder"
}
},
"manifest_version": 2
}