-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmanifest.json
33 lines (33 loc) · 914 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
{
"name": "GitHub favorites",
"description": "Create your own list of favorite repositories",
"author": "Malte Heyenga",
"homepage_url": "https://github.com/emha/chrome-github-favorites",
"version": "1.3.1",
"permissions": ["storage", "contextMenus"],
"content_scripts": [
{
"matches": ["https://*.github.com/"],
"js": ["./js/helpers.js", "./js/favorites-list.js"]
},
{
"matches": ["https://*.github.com/*/*"],
"js": ["./js/helpers.js", "./js/repo-head.js"]
}
],
"action": {
"default_title": "Open settings",
"default_popup": "./html/settings.html"
},
"manifest_version": 3,
"icons": {
"16": "./assets/icon16.png",
"48": "./assets/icon48.png",
"128": "./assets/icon128.png",
"256": "./assets/icon256.png",
"512": "./assets/icon512.png"
},
"content_security_policy": {
"extension_pages": "script-src 'self';"
}
}