forked from harshjv/github-repo-size
-
Notifications
You must be signed in to change notification settings - Fork 0
/
manifest.json
executable file
·41 lines (41 loc) · 911 Bytes
/
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
{
"name": "GitHub Repository Size",
"version": "0.4.1",
"manifest_version": 2,
"description": "Automatically adds repository size to GitHub's repository summary",
"homepage_url": "https://github.com/harshjv/github-repo-size",
"author": "Harsh Vakharia",
"icons": {
"16": "icons/ghrs16.png",
"48": "icons/ghrs48.png",
"128": "icons/ghrs128.png"
},
"permissions": [
"storage",
"activeTab"
],
"background" : {
"scripts" : [
"src/background.js"
]
},
"content_scripts": [
{
"matches": [
"*://github.com/*"
],
"js": [
"src/inject.js"
],
"run_at": "document_end"
}
],
"browser_action": {
"default_icon": {
"16": "icons/ghrs16.png",
"48": "icons/ghrs48.png",
"128": "icons/ghrs128.png"
},
"default_title": "GitHub Repository Size: Click to set/remove access token"
}
}