-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathmanifest.json
86 lines (86 loc) · 2.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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
{
"manifest_version": 2,
"name": "Cognizant Intelligent Test Scripter",
"description": "Spy,Heal and Recorder Extension for Cognizant Intelligent Test Scripter",
"version": "0.0.0.9",
"applications": {
"gecko": {
"id": "{e26b3297-afc1-4980-84a4-1c1a0af6b70b}"
}
},
"icons": {
"16": "logo-16.png",
"32": "logo-32.png",
"48": "logo-48.png",
"128": "logo-128.png"
},
"options_ui": {
"page": "Options/index.html",
"chrome_style": false,
"open_in_tab": true
},
"content_scripts": [
{
"matches": [
"<all_urls>"
],
"js": [
"preference.js",
"locatorBuilders.js",
"util.js",
"object.js",
"recorder.js",
"spy.js",
"heal.js",
"main.js"
],
"all_frames": true
}
],
"background": {
"scripts": [
"Background/contextmenu.js",
"Background/contextMenuList.js",
"Background/background.js",
"Background/server.js"
]
},
"browser_action": {
"default_icon": "logo-64.png"
},
"commands": {
"_execute_browser_action": {
"suggested_key": {
"windows": "Ctrl+Shift+L",
"mac": "Command+Shift+L",
"chromeos": "Ctrl+Shift+L",
"linux": "Ctrl+Shift+L"
}
},
"Toggle Spy": {
"suggested_key": {
"windows": "Alt+S",
"mac": "Alt+S",
"chromeos": "Alt+S",
"linux": "Alt+S"
},
"description": "Toggle Spy for Heal Mode"
},
"Open Options": {
"suggested_key": {
"windows": "Ctrl+Shift+O",
"mac": "Command+Shift+O",
"chromeos": "Ctrl+Shift+O",
"linux": "Ctrl+Shift+O"
},
"description": "Open Addon Options"
}
},
"permissions": [
"activeTab",
"storage",
"contextMenus",
"notifications",
"tabs"
]
}