-
Notifications
You must be signed in to change notification settings - Fork 2
/
manifest.json
57 lines (57 loc) · 1.18 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
{
"name": "Mojito Inspector",
"version": "0.9.7",
"version_name": "0.9.7",
"description": "Extension to inspect and configure Mojito experiments.",
"manifest_version": 3,
"permissions": [
"activeTab"
],
"background": {
"service_worker": "service_worker.js"
},
"content_scripts": [
{
"matches": [
"<all_urls>"
],
"js": [
"content.js"
],
"run_at": "document_idle"
}
],
"devtools_page": "devtools.html",
"web_accessible_resources": [
{
"resources": [
"injected.js"
],
"matches": [
"<all_urls>"
]
}
],
"homepage_url": "https://mojito.mx/",
"icons": {
"16": "images/logo.png",
"32": "images/logo.png",
"48": "images/logo.png",
"128": "images/logo.png"
},
"action": {
"default_icon": {
"16": "images/logo-disabled.png",
"32": "images/logo-disabled.png",
"48": "images/logo-disabled.png",
"128": "images/logo-disabled.png"
},
"default_title": "Mojito Inspector",
"default_popup": "popups/popup-disabled.html"
},
"content_security_policy": {},
"host_permissions": [
"http://*/*",
"https://*/*"
]
}