-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
manifest.json
66 lines (66 loc) · 1.79 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
60
61
62
63
64
65
66
{
"manifest_version": 3,
"name": "PythagorasHIM™ for Obra Prima Takk8IS™",
"author": "David C Cavalcante",
"homepage_url": "https://github.com/Takk8IS",
"version": "1.0.0",
"description": "Simplifies the auditing process by automating the search, selection, and validation of purchase orders on the Obra Prima platform.",
"permissions": [
"activeTab",
"clipboardWrite",
"notifications",
"scripting",
"tabs",
"storage"
],
"host_permissions": [
"https://51.92.48.100.nip.io/*",
"https://*.google.com/*",
"https://*.groq.com/*",
"https://*.obraprimaweb.com.br/*",
"https://*.obraprima.eng/*"
],
"background": {
"service_worker": "background.js"
},
"action": {
"default_title": "PythagorasHIM™ for Obra Prima Web",
"default_popup": "popup.html",
"default_icon": {
"48": "images/icon48.png",
"72": "images/icon72.png",
"96": "images/icon96.png",
"128": "images/icon128.png",
"144": "images/icon144.png",
"192": "images/icon192.png",
"512": "images/icon512.png",
"1024": "images/icon1024.png"
}
},
"content_scripts": [
{
"matches": [
"https://51.92.48.100.nip.io/*",
"https://*.google.com/*",
"https://*.groq.com/*",
"https://*.obraprimaweb.com.br/*",
"https://*.obraprima.eng/*"
],
"js": ["content.js"],
"run_at": "document_idle"
}
],
"icons": {
"48": "images/icon48.png",
"72": "images/icon72.png",
"96": "images/icon96.png",
"128": "images/icon128.png",
"144": "images/icon144.png",
"192": "images/icon192.png",
"512": "images/icon512.png",
"1024": "images/icon1024.png"
},
"content_security_policy": {
"extension_pages": "script-src 'self'; object-src 'self'"
}
}