-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathmanifest.json
63 lines (63 loc) · 1.41 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
59
60
61
62
63
{
"manifest_version": 3,
"name": "CodeSyncer",
"description": "This Chrome extension enables users to synchronize their LeetCode submissions to their GitHub repository effortlessly.",
"version": "1.1.0",
"author": "Mustafiz Kaifee",
"homepage_url": "https://github.com/Mustafiz04",
"action": {
"default_popup": "popup.html",
"default_icon": {
"16": "/static/images/logo1.PNG",
"48": "/static/images/logo1.PNG",
"128": "/static/images/logo1.PNG"
}
},
"icons": {
"16": "/static/images/logo1.PNG",
"48": "/static/images/logo1.PNG",
"128": "/static/images/logo1.PNG"
},
"background": {
"service_worker": "/scripts/background.js"
},
"permissions": [
"unlimitedStorage",
"storage"
],
"host_permissions": [
"https://github.com/*",
"https://api.github.com/*",
"https://leetcode.com/*",
"https://practice.geeksforgeeks.org/*"
],
"content_scripts": [
{
"js": [
"scripts/leetcode.js"
],
"matches": [
"https://leetcode.com/*"
],
"run_at": "document_idle"
},
{
"js": [
"scripts/github.js"
],
"matches": [
"https://github.com/*"
],
"run_at": "document_idle"
},
{
"js": [
"scripts/geeksforgeeks.js"
],
"matches": [
"https://practice.geeksforgeeks.org/*"
],
"run_at": "document_idle"
}
]
}