-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmanifest.json
More file actions
42 lines (32 loc) · 734 Bytes
/
manifest.json
File metadata and controls
42 lines (32 loc) · 734 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
34
35
36
37
38
39
40
41
42
{
"manifest_version": 2,
"name": "Histofy",
"version": "1.0",
"description": " WebExtension to generate fake browser history",
"homepage_url": "https://github.com/replaceits/Histofy",
"author": "Sidney Williams",
"developer": {
"name": "Sidney Williams",
"url": "https://www.replaceits.me"
},
"icons": {
"48": "icons/histofy-48.png",
"96": "icons/histofy-96.png"
},
"permissions": [
"history",
"storage"
],
"browser_action": {
"browser_style": true,
"default_icon": "icons/histofy-48.png",
"default_title": "Histofy",
"default_popup": "popup/histofy_popup.html"
},
"options_ui": {
"page": "options/histofy_options.html"
},
"web_accessible_resources": [
"data/history_data.json"
]
}