-
Notifications
You must be signed in to change notification settings - Fork 1
/
manifest.json
38 lines (32 loc) · 1.02 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
28
29
30
31
32
33
34
35
36
37
38
{
"manifest_version": 2,
"name": "timelog",
"description": "Rally extension for time logging.",
"version": "0.1",
"browser_action": {
"default_icon": "ressources/icon.png",
"default_popup": "src/popup/popup.html"
},
"background": {"persistent": true,
"scripts": ["src/background/eventbackground.js"]},
"permissions": [
"storage",
"webNavigation",
"webRequest",
"tabs",
"http://*/*",
"https://*/*"
],
"content_scripts": [
{
"matches": ["https://rally1.rallydev.com/slm/analytics/timeTrack"],
"css": ["src/helpers/bootstrap/css/bootstrap.min.prefixed.css"],
"js": [ "src/helpers/jquery-1.9.1.min.js",
"src/helpers/insertionQuery/insQ.js",
"src/background/insert.js",
"src/background/timer.js"],
"all_frames": true
}
],
"web_accessible_resources": ["ressources/addTimer.png", "src/background/timer.js", "src/helpers/jquery-1.9.1.min.js"]
}