-
Notifications
You must be signed in to change notification settings - Fork 269
Expand file tree
/
Copy pathmanifest.json
More file actions
55 lines (55 loc) · 1.1 KB
/
manifest.json
File metadata and controls
55 lines (55 loc) · 1.1 KB
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
{
"manifest_version": 3,
"name": "Microsoft Clarity Developer Tools",
"description": "Clarity helps you understand how users are interacting with your website.",
"version": "0.8.58",
"version_name": "0.8.58",
"minimum_chrome_version": "88",
"devtools_page": "devtools.html",
"icons": {
"16": "icon-16.png",
"32": "icon-32.png",
"48": "icon-48.png",
"128": "icon-128.png"
},
"action": {
"default_icon": "icon.png",
"default_title": "Microsoft Clarity Developer Tools",
"default_popup": "popup.html"
},
"content_scripts": [
{
"matches": [
"http://*/*",
"https://*/*"
],
"js": [
"content.js"
]
}
],
"web_accessible_resources": [
{
"resources": [
"clarity.js"
],
"matches": [
"<all_urls>"
]
}
],
"background": {
"service_worker": "background.js"
},
"permissions": [
"storage",
"tabs"
],
"host_permissions": [
"http://*/*",
"https://*/*"
],
"content_security_policy": {
"extension_pages": "script-src 'self'; object-src 'self'"
}
}