-
-
Notifications
You must be signed in to change notification settings - Fork 26
/
Copy pathmanifest.json
91 lines (91 loc) · 2.29 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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
{
"version": "1.3.3",
"name": "Le Git Graph - Commits Graph for GitHub",
"description": "A browser extension that displays the git graph for any GitHub repository.",
"manifest_version": 3,
"content_scripts": [
{
"matches": [
"*://*.github.com/*"
],
"css": [
"css/background.css"
],
"js": [
"js/showLegend.js",
"js/drawGraph.js",
"js/fetchFurther.js",
"js/showCommitsLoading.js",
"js/getLocalToken.js",
"js/addAuthorizationPrompt.js",
"js/authorisation/oauth2.js",
"js/fetchCommits.js",
"js/fetchFilteredCommits.js",
"js/showCommits.js",
"js/sortCommits.js",
"js/setBranchOptions.js",
"js/loadBranchesButton.js",
"js/addCommitsButton.js",
"js/openCommitsTab.js",
"js/main.js",
"js/fre/helper.js",
"js/fre/updateFre.js",
"js/fre/installFre.js",
"js/fre/handler.js"
],
"run_at": "document_end"
},
{
"matches": [
"*://*.scaria.dev/github-tree-graph/authorize*",
"*://*.scaria.dev/github-tree-graph/authorize/*"
],
"js": [
"js/authProcess.js"
],
"run_at": "document_end"
}
],
"action": {
"default_icon": {
"16": "/images/le_git_graph16.png",
"32": "/images/le_git_graph32.png",
"48": "/images/le_git_graph48.png",
"128": "/images/le_git_graph128.png"
},
"default_title": "Le Git Graph",
"default_popup": "/html/popup.html"
},
"browser_specific_settings": {
"gecko": {
"id": "{fd903445-e572-42dd-90be-ae63dd5840ea}"
}
},
"icons": {
"16": "/images/le_git_graph16.png",
"32": "/images/le_git_graph32.png",
"48": "/images/le_git_graph48.png",
"128": "/images/le_git_graph128.png"
},
"background": {
"service_worker": "js/serviceWorker.js"
},
"web_accessible_resources": [
{
"resources": [
"js/authInject.js",
"images/popup.png",
"html/branchSelection.html",
"html/authorizationPrompt.html",
"html/commitsLoading.html",
"html/commitsContainer.html",
"html/commitItem.html",
"html/hoverCard.html",
"html/tooltip.html"
],
"matches": [
"<all_urls>"
]
}
]
}