forked from pranavmangal/github-repo-size
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmanifest.json
32 lines (32 loc) · 851 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
{
"manifest_version": 2,
"name": "GitHub Repository Size",
"description": "Displays the size of a GitHub repository on its homepage",
"author": "Pranav Mangal",
"version": "1.1.4",
"homepage_url": "https://github.com/pranavmangal/github-repo-size",
"browser_specific_settings": {
"gecko": {
"id": "github-repository-size@pranavmangal"
},
"gecko_android": {
"id": "github-repository-size@pranavmangal"
}
},
"permissions": ["activeTab", "storage", "*://*.github.com/*"],
"browser_action": {
"default_title": "GitHub Repository Size Options",
"default_popup": "popup/popup.html"
},
"content_scripts": [
{
"matches": ["*://*.github.com/*"],
"js": ["content.js"],
"run_at": "document_end"
}
],
"icons": {
"48": "icons/icon.png",
"96": "icons/icon.png"
}
}