-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
manifest.json
59 lines (58 loc) · 2.22 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
52
53
54
55
56
57
58
59
{
"name": "demofl.io",
"manifest_version": 3,
"version": "0.0.0.1",
"key": "MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAuF2m/i6+rssNBswHImu8nDRzyLLKA6hrYT/EqBXYwM66JIcBSU8Pr8AQkfhkFpA+3nj6CgDXY/RsTn4iE6IS7MXea0z017/726IfpwPaOHIUp1cd3uoG9LmldU0io4zCxxS69rmJUEvvpTP8tThOd+RsEmn0xcKFwGR6g/4i7aK5XkJFaKLRzFHXa7z9N8QGFh3VtqtdTeHvGcQYltNrUmACug7yKhbAlII4fWr904cDitsdHJ8TeLjJOcM9jVC133zTWK/WMbYZvZswfUeB0Nq64hUTeVIazuPPLQSXlyd496PTIYK148MUn589ZHo9YjkUXo86iSZVbeYVq8SGSwIDAQAB",
"description": "Demofl.io simplifies how you manage, and present demo flows, making your presentations more engaging and effective for prospects",
"permissions": [
"windows",
"activeTab",
"tabs",
"tabGroups",
"storage",
"background"
],
"icons": {
"16": "assets/icons/icon32.png",
"32": "assets/icons/icon32.png",
"48": "assets/icons/icon48.png",
"128": "assets/icons/icon128.png"
},
"background": {
"service_worker": "dist/background-bundle.js"
},
"options_page": "html/config.html",
"incognito": "spanning",
"commands": {},
"content_security_policy": {
"extension_pages": "script-src 'self' 'wasm-unsafe-eval'; object-src 'self'; connect-src 'self' https://extensionpay.com/extension/abobjbfojjkoonmfffjppmkobmbcebdj/api/user https://extensionpay.com/extension/abobjbfojjkoonmfffjppmkobmbcebdj/api/new-key https://my.demofl.io/ext/oidc https://demoflio-zrzu8s.us1.zitadel.cloud/oauth/v2/token https://demoflio-zrzu8s.us1.zitadel.cloud/* https://demoflio.us1.zitadel.cloud/* https://my.demofl.io/*"
},
"content_scripts": [
{
"matches": [
"https://*/*",
"http://*/*"
],
"run_at": "document_end",
"js": ["dist/content-bundle.js"],
"type": "module",
"all_frames": true
},
{
"matches": ["https://my.demofl.io/ext/callback*"],
"js": ["dist/auth-content-bundle.js"],
"run_at": "document_start"
},
{
"matches": ["https://my.demofl.io/*","http://127.0.0.1:7331/*"],
"js": ["dist/demofliocloud-bundle.js"],
"run_at": "document_start"
}
],
"author": "demofl.io",
"homepage_url": "https://github.com/demofl-io/demofl.io",
"action": {
"default_title": "demofl.io",
"default_popup": "html/popup.html"
}
}