forked from kamranahmedse/githunt
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmanifest.json
43 lines (43 loc) · 1.02 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
{
"manifest_version": 2,
"name": "GithuntFF",
"short_name": "Githunt",
"description": "Replace the new tab with a list of trending repositories on github belonging to any technology that you chose.",
"version": "0.1",
"applications": {
"gecko": {
"id": "GithuntFF@Gat81",
"strict_min_version": "42.0",
"strict_max_version": "50.*"
}
},
"permissions": [
"tabs",
"storage",
"webNavigation",
"*://*.github.com/*"
],
"icons": {
"16": "assets/img/icon16.png",
"48": "assets/img/icon48.png",
"128": "assets/img/icon128.png"
},
"chrome_url_overrides": {
"newtab": "githunt.html"
},
"homepage_url": "https://github.com/Gaet81/githunt",
"options_ui": {
"page":"options.html"
},
"background": {
"scripts": ["assets/js/background.js"]
},
"browser_action": {
"default_title": "Githunt",
"default-icon": {
"16": "assets/img/icon16.png",
"32": "assets/img/icon48.png",
"128": "assets/img/icon128.png"
}
}
}