-
Notifications
You must be signed in to change notification settings - Fork 61
/
Copy pathmanifest-firefox.json
46 lines (46 loc) · 1.25 KB
/
manifest-firefox.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
{
"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": "__LH_VERSION__",
"author": "Arun Bhardwaj",
"action": {
"default_icon": "assets/thumbnail.png",
"default_popup": "popup.html",
"default_title": "Upload your LeetCode solutions to GitHub"
},
"icons": {
"16": "assets/thumbnail.png",
"48": "assets/thumbnail.png",
"128": "assets/thumbnail.png"
},
"background": {
"scripts": ["scripts/background.js"]
},
"permissions": ["unlimitedStorage", "storage", "webNavigation"],
"content_scripts": [
{
"matches": ["https://leetcode.com/*"],
"js": ["scripts/leetcode.js"],
"run_at": "document_idle"
},
{
"matches": ["https://github.com/*"],
"js": ["scripts/authorize.js"]
},
{
"matches": ["https://practice.geeksforgeeks.org/*"],
"js": ["scripts/gfg.js"]
}
],
"content_security_policy": {
"extension_pages": "script-src 'self'; object-src 'self'"
},
"browser_specific_settings": {
"gecko": {
"id": "[email protected]",
"strict_min_version": "109.0"
}
}
}