-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmanifest.json
More file actions
53 lines (53 loc) · 1.35 KB
/
manifest.json
File metadata and controls
53 lines (53 loc) · 1.35 KB
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
43
44
45
46
47
48
49
50
51
52
53
{
"name": "Zodiac",
"short_name": "ZC",
"version": "0.0.1",
"manifest_version": 2,
"description": "Organize time reports and report time",
"homepage_url": "https://github.com/PabloK/Zodiac",
"icons": {
"16": "icons/icon16.png",
"48": "icons/icon48.png",
"128": "icons/icon128.png"
},
"author" : "Pablo Karlsson",
"options_page" : "src/templates/base_layout.html#/settings",
"default_locale": "en",
"background": {
"scripts": [
"js/vendor/loglevel.min.js",
"js/background.js"
]
},
"minimum_chrome_version" : "20",
"browser_action": {
"default_icon": {
"19": "icons/icon19.png",
"48": "icons/icon48.png"
},
"default_title": "Zodiac - Time reporting",
"default_popup": "src/templates/base_layout.html#/quick_window"
},
"content_scripts": [
{
"matches": ["<all_urls>"],
"js": [
"js/vendor/jq.min.js",
"js/vendor/date.js",
"js/vendor/angular.min.js",
"js/vendor/angular-route.min.js",
"js/vendor/loglevel.min.js",
"js/vendor/bootstrap.min.js",
"js/vendor/angular-ui.js",
"js/app.js",
"js/helpers.js",
"js/models.js",
"js/globals.js",
"js/controllers.js"
]
}
],
"permissions": [
"storage"
]
}