-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathmanifest.json
More file actions
60 lines (58 loc) · 1.65 KB
/
manifest.json
File metadata and controls
60 lines (58 loc) · 1.65 KB
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
{
"manifest_version": 3,
"name": "QueueOverflow",
"version": "0.1",
"key" : "MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA2IXoETHt10Ursh0npEjuRihmXa56Ma/8zl0mbsol3qgtHryR17bSj7uo3pKIvP+p5q6CEX0YC0ODl1aRGTGCDkLr+8vYOs3RNy2bCwUBvCrtK4bRleBF4KW1+quGHLsDcyeaNG3YzjdeaSW/CKz9iVhyQZjyKDG8MXJhdQDXYQpDuCq9RGFG9LaxdRcqikGKNDOhS+jx/wnj+8bqwJ7KAYYXfmGa4p83pyZXV+GbzsZugkdgLHOeaa/6xuIk19qGD2N5u9RV5asfhcSTeYnkCa6s+sJYXQAP9Zntny6kPrw2NeTyAycSpwTk1LRHmrvlkBqKsysT27dsqKv/FgGWwwIDAQAB",
"author": "Eshan ",
"description": "This extension stores a list of dsa problems you want to solve later from various websites like LeetCode, GeeksforGeeks, etc. and helps you keep track of them.",
"permissions": [
"storage",
"tabs"
],
"host_permissions": [
"https://queue-overflow-backend.onrender.com/*"
],
"content_scripts": [
{
"matches": [
"https://maang.in/*",
"https://leetcode.com/*",
"https://www.geeksforgeeks.org/*",
"https://cses.fi/*",
"https://www.codechef.com/*",
"https://codeforces.com/*"
],
"js": [
"dist/content.js"
]
,
"type": "module"
}
],
"background": {
"service_worker": "dist/background.js"
},
"web_accessible_resources" : [
{
"resources": [
"assets/*.png",
"bookmark.js"
],
"matches" : ["<all_urls>"]
}
],
"action": {
"default_icon": {
"16": "assets/ext-icon.png",
"24": "assets/ext-icon.png",
"32": "assets/ext-icon.png"
},
"default_popup": "popup.html",
"default_title": "QueueOverflow"
,
"permissions": [
"identity",
"downloads"
]
}
}