forked from QasimWani/LeetHub
-
Notifications
You must be signed in to change notification settings - Fork 0
/
manifest.json
42 lines (42 loc) · 1.01 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
{
"manifest_version": 3,
"name": "LeetHub v2",
"description": "Automatically integrate your Leetcode & GeeksforGeeks submissions to GitHub",
"homepage_url": "https://github.com/arunbhardwaj/LeetHub-2.0",
"version": "2.0.1",
"author": "Arun Bhardwaj",
"action": {
"default_icon": "assets/thumbnail.png",
"default_popup": "popup.html"
},
"icons": {
"16": "assets/thumbnail.png",
"48": "assets/thumbnail.png",
"128": "assets/thumbnail.png"
},
"background": {
"service_worker": "scripts/background.js"
},
"permissions": [
"unlimitedStorage",
"storage"
],
"content_scripts": [
{
"matches": [
"https://leetcode.com/*",
"https://github.com/*",
"https://practice.geeksforgeeks.org/*"
],
"js": [
"scripts/leetcode.js",
"scripts/authorize.js",
"scripts/gfg.js"
],
"run_at": "document_idle"
}
],
"content_security_policy": {
"extension_pages": "script-src 'self'; object-src 'self'"
}
}