-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmanifest.json
51 lines (51 loc) · 1.35 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
{
"manifest_version": 3,
"name": "Mtfk Pro",
"description": "Add-on streamlines messaging with appropriate tone and grammar, while also facilitating foreign language communication. Designed by experts, it offers a user-friendly interface and integrates with everything you type in browser. Craft messages that leave an impact with ease using our revolutionary add-on.",
"version": "1.0",
"options_ui": {
"page": "settings.html",
"open_in_tab": false
},
"content_security_policy": {
"extension_pages": "script-src 'self'; object-src 'self';",
"sandbox": "sandbox allow-scripts allow-forms allow-popups allow-modals; script-src 'self' 'unsafe-inline' 'unsafe-eval'; child-src 'self';"
},
"action": {
"default_popup": "context-settings.html",
"default_icon": "images/mtfk-logo.png"
},
"permissions": [
"activeTab",
"storage",
"tabs"
],
"background": {
"service_worker": "background.ts",
"type": "module"
},
"content_scripts": [
{
"matches": [
"*://*/*"
],
"css": [
"mtfk.scss"
],
"js": [
"./node_modules/@webcomponents/webcomponentsjs/webcomponents-bundle.js",
"mtfk.ts"
]
}
],
"web_accessible_resources": [
{
"matches": [
"*://*/*"
],
"resources": [
"images/mtfk-logo.png"
]
}
]
}