-
Notifications
You must be signed in to change notification settings - Fork 0
/
manifest.json
48 lines (48 loc) · 1.29 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
{
"manifest_version": 3,
"short_name": "Chrome Extension Boilerplate",
"name": "Chrome Extension Boilerplate",
"version": "0.0.1",
"description": "Chrome Extension Boilerplate with React, Vite, Typescript & Tailwind CSS",
"author": "Ahmed Dinar <[email protected]>",
"action": {
"default_icon": {
"16": "public/icon16.png",
"32": "public/icon32.png",
"48": "public/icon48.png",
"128": "public/icon128.png"
},
"default_popup": "popup.html",
"default_title": "Chrome Extension Boilerplate with React, Vite, Typescript & Tailwind CSS"
},
"icons": {
"16": "public/icon16.png",
"32": "public/icon32.png",
"48": "public/icon48.png",
"128": "public/icon128.png"
},
"options_page": "options.html",
"options_ui": {
"page": "options.html",
"open_in_tab": true
},
"background": {
"service_worker": "src/entryPoints/background.tsx"
},
"content_scripts": [
{
"matches": ["*://*/*"],
"js": ["src/entryPoints/content.tsx"],
"run_at": "document_end",
"all_frames": false,
"match_about_blank": false
}
],
"web_accessible_resources": [
{
"resources": ["assets/fonts/*"],
"matches": ["*://*/*"]
}
],
"permissions": ["tabs", "activeTab", "scripting", "storage"]
}