forked from refined-github/refined-github
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmanifest.json
More file actions
60 lines (60 loc) · 1.11 KB
/
manifest.json
File metadata and controls
60 lines (60 loc) · 1.11 KB
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
{
"name": "Refined GitHub",
"version": "0.0.0",
"description": "Simplifies the GitHub interface and adds useful features",
"homepage_url": "https://github.com/sindresorhus/refined-github",
"manifest_version": 2,
"minimum_chrome_version": "58",
"applications": {
"gecko": {
"id": "{a4c4eda4-fb84-4a84-b4a1-f7c1cbf2a1ad}",
"strict_min_version": "55.0"
}
},
"permissions": [
"storage",
"clipboardWrite",
"contextMenus",
"activeTab",
"https://api.github.com/*"
],
"browser_action": {
"default_icon": "icon.png",
"default_popup": "options.html",
"browser_style": true
},
"optional_permissions": [
"http://*/*",
"https://*/*"
],
"icons": {
"128": "icon.png"
},
"options_ui": {
"chrome_style": true,
"page": "options.html"
},
"background": {
"scripts": [
"browser-polyfill.min.js",
"background.js"
],
"persistent": false
},
"content_scripts": [
{
"run_at": "document_start",
"matches": [
"https://github.com/*",
"https://gist.github.com/*"
],
"css": [
"content.css"
],
"js": [
"browser-polyfill.min.js",
"content.js"
]
}
]
}