-
Notifications
You must be signed in to change notification settings - Fork 2
/
manifest.json
36 lines (36 loc) · 932 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
35
36
{
"name": "__MSG_extName__",
"version": "0.0.2",
"description": "__MSG_extDesc__",
"author": "Mehdi Chaouch",
"default_locale": "en",
"background": {
"scripts": ["vendor/chrome-badge-animator/dist/BadgeAnimator.min.js", "js/background.js"],
"persistent": true
},
"browser_action": {
"default_title": "__MSG_appTooltip__",
"default_icon": {
"16": "/img/icon16.png",
"24": "/img/icon24.png",
"32": "/img/icon32.png"
},
"default_popup": "views/popup.html"
},
"icons": {
"16": "/img/icon16.png",
"24": "/img/icon24.png",
"32": "/img/icon32.png",
"48": "/img/icon48.png",
"128": "/img/icon128.png"
},
"options_page": "views/options.html",
"permissions": [
"storage",
"alarms",
"notifications",
"https://www.revolut.com/api/*"
],
"content_security_policy": "script-src 'self' https://ssl.google-analytics.com https://platform.twitter.com; object-src 'self'",
"manifest_version": 2
}