-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmanifest.json
58 lines (58 loc) · 1.75 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
{
"manifest_version": 3,
"name": "PrometheusHackerRank",
"author": "David C Cavalcante",
"homepage_url": "https://github.com/Takk8IS",
"version": "1.0.0",
"description": "PrometheusHackerRank is a powerful Chrome extension that provides users with the knowledge to pass HackerRank certification tests.",
"permissions": [
"activeTab",
"alarms",
"clipboardWrite",
"downloads",
"notifications",
"scripting",
"storage",
"tabs",
"webNavigation",
"webRequest"
],
"host_permissions": ["*://*.groq.com/*", "*://*.hackerrank.com/*"],
"background": {
"service_worker": "background.js"
},
"action": {
"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"
},
"default_title": "PrometheusHackerRank",
"default_popup": "popup.html"
},
"content_scripts": [
{
"matches": ["*://*.groq.com/*", "*://*.hackerrank.com/*"],
"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'"
}
}