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
|
{
"manifest_version": 2,
"name": "Githunt",
"short_name": "Githunt",
"description": "Replace the new tab with a list of trending repositories on github belonging to any technology that you chose.",
"version": "3.6",
"permissions": [
"tabs",
"storage",
"*://*.github.com/*"
],
"icons": {
"16": "/img/icon16.png",
"48": "/img/icon48.png",
"128": "/img/icon128.png"
},
"chrome_url_overrides": {
"newtab": "index.html"
},
"homepage_url": "http://kamranahmed.info/githunt",
"browser_action": {
"default_title": "Githunt",
"default_icon": "/img/icon128.png"
}
}
|