-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathmanifest.json
59 lines (59 loc) · 1.23 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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
{
"manifest_version": 2,
"name": "CSS Regression Testing",
"description": "CSS regression testing toll to test CSS regression on cross resolutions.",
"version": "0.0.1",
"browser_action": {
"default_icon": "images/loop1.png",
"default_title": "Start Testing"
},
"background": {
"scripts": [
"lib/jquery.js",
"lib/dexie.js",
"lib/filer.js",
"entities/Config.js",
"entities/Device.js",
"entities/Project.js",
"entities/User.js",
"entities/Website.js",
"modules/FileSystem.js",
"modules/Http.js",
"modules/Indexeddb.js",
"modules/Webpage.js",
"background.js",
"mockdata.js"
]
},
"permissions": [
"activeTab",
"notifications",
"tabs",
"alarms",
"storage",
"https://*/",
"http://*/"
],
"icons": {
"16": "images/loop1.png",
"48": "images/loop1.png",
"128": "images/loop1.png"
},
"externally_connectable": {
"matches": [
"http://localhost:8080/*",
"https://css-reg.appspot.com/"
]
},
"content_scripts": [
{
"matches": [
"http://localhost:8080/*",
"https://css-reg.appspot.com/*"
],
"js": [
"content_script.js"
]
}
]
}