-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmanifest.json
54 lines (54 loc) · 1.34 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
{
"manifest_version": 3,
"name": "Form Extension",
"version": "1.0.0",
"description": "Form Extension",
"permissions": [
"storage",
"tabs",
"activeTab",
"scripting"
],
"host_permissions": [
"https://*.google.com/forms/*",
"https://prompt-enhancer.onrender.com/*",
"https://docs.google.com/*",
"http://localhost:5000/*",
"http://localhost:3000/*",
"http://localhost:5000/api/v1/formatter/extract-answers",
"https://text-answer-handler.onrender.com/*"
],
"background": {
"service_worker": "background.js"
},
"content_scripts": [
{
"matches": ["https://*.google.com/forms/*",
"https://docs.google.com/*",
"https://prompt-enhancer.onrender.com/*",
"http://localhost:5000/*",
"http://localhost:3000/*",
"http://localhost:5000/api/v1/formatter/extract-answers",
"https://text-answer-handler.onrender.com/*"
],
"js": ["contentScript.js"]
}
],
"web_accessible_resources": [
{
"resources": ["prompt.html"],
"matches": ["<all_urls>"],
"extension_ids": ["*"],
"use_dynamic_url": true
}
],
"action": {
"default_icon": {
"16": "assests/16x16.png",
"48": "assests/48x48.png",
"128": "assests/128x128.png"
},
"default_title": "Form Extension",
"default_popup": "popup.html"
}
}