-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmanifest.json
More file actions
55 lines (55 loc) · 1.35 KB
/
manifest.json
File metadata and controls
55 lines (55 loc) · 1.35 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
{
"$schema": "https://json.schemastore.org/chrome-manifest.json",
"manifest_version": 3,
"version": "0.7.2",
"default_locale": "en",
"name": "__MSG_appName__",
"description": "__MSG_appDescription__",
"icons": {
"16": "src/images/icon-16.png",
"48": "src/images/icon-48.png",
"128": "src/images/icon-128.png"
},
"action": {
"default_icon": {
"16": "src/images/icon-16.png",
"48": "src/images/icon-48.png",
"128": "src/images/icon-128.png"
},
"default_title": "Kumaflow - Webflow UI Localization"
},
"options_ui": {
"page": "src/options/index.html",
"open_in_tab": true
},
"background": {
"service_worker": "src/background.ts"
},
"update_url": "https://example.com/updates/kumaflow/update.xml",
"permissions": [
"storage"
],
"host_permissions": [
"https://webflow-ui-localization.pages.dev/*",
"https://cdn.jsdelivr.net/*"
],
"content_scripts": [
{
"matches": [
"https://webflow.com/dashboard*",
"https://webflow.com/login*",
"https://webflow.com/signup*",
"https://webflow.com/forgot*",
"https://preview.webflow.com/*",
"https://*.design.webflow.com/*"
],
"js": [
"src/content/scripts.ts"
],
"css": [
"src/content/styles.css"
],
"run_at": "document_idle"
}
]
}