-
Notifications
You must be signed in to change notification settings - Fork 0
/
manifest.json
37 lines (34 loc) · 862 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
37
{
"update_url": "https://clients2.google.com/service/update2/crx",
"manifest_version": 2,
"name": "Endtest - Codeless Automated Testing",
"short_name": "Endtest",
"author": "Endtest",
"homepage_url": "https://endtest.io",
"description": "Record your Web Tests and add them to your Endtest account.",
"version": "0.0.0.2",
"icons": {
"16": "icon_new.png",
"48": "icon_new.png",
"128": "icon_new.png"
},
"background": {
"scripts": ["background.js"]
},
"permissions": [
"activeTab", "<all_urls>","cookies","storage","tabs","webNavigation"
],
"content_scripts": [
{
"all_frames": true,
"matches": [
"<all_urls>"
],
"js": ["jquery-3.3.1.min.js", "content.js", "popup.js"]
}
],
"browser_action": {
"default_icon": "icon_new.png",
"default_popup": "popup.html"
}
}