-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMANIFEST.JSON
More file actions
35 lines (35 loc) · 763 Bytes
/
MANIFEST.JSON
File metadata and controls
35 lines (35 loc) · 763 Bytes
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
{
"manifest_version": 3,
"name": "focus bubble",
"version": "2.0",
"description": "LeetCode solve tracker by QuantumQuest",
"permissions": [
"storage",
"tabs",
"alarms",
"webNavigation",
"activeTab"
],
"host_permissions": [
"https://leetcode.com/*",
"https://*.firebaseio.com/*",
"https://www.googleapis.com/*"
],
"background": {
"service_worker": "background.js"
},
"content_scripts": [
{
"matches": ["https://leetcode.com/problems/*"],
"js": ["content.js"],
"run_at": "document_start"
}
],
"action": {
"default_popup": "popup.html"
},
"options_page": "options.html",
"content_security_policy": {
"extension_pages": "script-src 'self'; object-src 'self'"
}
}