forked from MichelLalancette/SenseFieldFormatter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
manifest.json
34 lines (30 loc) · 824 Bytes
/
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
28
29
30
31
32
33
34
{
"description": "Sense Field Formatter",
"manifest_version": 2,
"name": "Sense Field Formatter",
"version": "1.7.4",
"homepage_url": "https://github.com/MichelLalancette/SenseFieldFormatter",
"icons": {
"48": "./images/SenseFieldFormatter_48.png"
},
"permissions": [
"storage"
],
"browser_action": {
"default_icon": "./images/SenseFieldFormatter_32.png",
"theme_icons": [{
"light": "./images/SenseFieldFormatter_32.png",
"dark": "./images/SenseFieldFormatter_32.png",
"size": 32
}],
"default_title": "Qlik Sense Field Formatter",
"default_popup": "html/popup.html"
},
"content_scripts": [
{
"matches": ["*://*/sense/app/*"],
"css": ["css/content_scripts.css"],
"js": ["js/content_scripts.js", "js/shared.js"]
}
]
}