-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmanifest.json
More file actions
58 lines (58 loc) · 1.38 KB
/
manifest.json
File metadata and controls
58 lines (58 loc) · 1.38 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
56
57
58
{
"manifest_version": 3,
"name": "kedyy",
"version": "1.0.4",
"author": "Emre Kayık",
"description": "kedyy tarayıcınızdaki kedyyniz.",
"action": {
"default_popup": "src/pages/popup.html",
"default_title": "kedyy",
"default_icon": "src/assets/icon.png"
},
"icons": {
"16": "src/assets/icon.png",
"48": "src/assets/icon.png",
"128": "src/assets/icon.png"
},
"chrome_url_overrides": {
"newtab": "src/pages/newtab.html"
},
"background": {
"service_worker": "src/scripts/background.js"
},
"content_scripts": [
{
"matches": [
"<all_urls>"
],
"js": [
"src/libs/lottie.min.js",
"src/scripts/content.js"
],
"css": [
"src/styles/content.css"
],
"run_at": "document_end"
}
],
"web_accessible_resources": [
{
"resources": [
"src/assets/kedy.json",
"src/assets/kedy2.json",
"src/assets/kedy3.json",
"src/assets/kedy4.json"
],
"matches": [
"<all_urls>"
]
}
],
"permissions": [
"storage",
"activeTab"
],
"host_permissions": [
"<all_urls>"
]
}