-
Notifications
You must be signed in to change notification settings - Fork 7
/
manifest.json
27 lines (27 loc) · 1.14 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
{
"name" : "Mint Date Range",
"short_name" : "MintDateRange",
"version" : "1.6.0",
"manifest_version" : 2,
"description" : "Choose a date range for Mint's transaction list",
"background": {
"scripts" : ["js/bg.js"]
},
"page_action": {
"default_title" : "Mint Date Range",
"default_popup" : "mdr.html",
"default_icon" : "images/mdr-icon-16.png"
},
"icons":
{
"128" : "images/mdr-icon-128.png",
"48" : "images/mdr-icon-48.png",
"16" : "images/mdr-icon-16.png"
},
"permissions" : [
"declarativeContent",
"activeTab",
"storage"
],
"content_security_policy" : "default-src 'none'; style-src 'unsafe-inline' 'self'; img-src 'self' http://www.google-analytics.com/; script-src 'self' https://ssl.google-analytics.com; object-src 'self'"
}