forked from taeyangk0331/Profile-Autogeneration-System
-
Notifications
You must be signed in to change notification settings - Fork 0
/
manifest.json
67 lines (67 loc) · 1.52 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
64
65
66
67
{
"manifest_version": 3,
"name": "GPGen",
"description": "Automatically generate profile based on your GitHub",
"homepage_url": "https://github.com/taeyangk0331/SKKU_OSSP_Project",
"version": "0.0.1",
"author": "oss_team",
"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",
"declarativeNetRequest",
"declarativeNetRequestWithHostAccess"
],
"host_permissions": [
"https://github.com/"
],
"web_accessible_resources": [
{
"matches": [
"<all_urls>"
],
"resources": [
"library/jquery-3.3.1.min.js",
"library/semantic.min.js",
"popup.html",
"popup.js",
"welcome.html",
"welcome.js",
"library/sha1.min.js",
"library/jszip.min.js",
"library/FileSaver.min.js",
"scripts/oauth2.js",
"scripts/background.js",
"scripts/util.js",
"scripts/Github.js",
"scripts/authorize.js",
"scripts/storage.js",
"scripts/uploadfunctions.js"
]
}
],
"content_scripts": [
{
"matches": [
"https://github.com/*"
],
"js": [
"scripts/util.js",
"scripts/Github.js",
"scripts/authorize.js"
],
"run_at": "document_idle"
}
]
}