-
Notifications
You must be signed in to change notification settings - Fork 0
/
manifest.json
33 lines (33 loc) · 1020 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 Issues AI",
"version": "1.0.0",
"description": "This is an extension to help you create Github issues automatically from your plain text",
"manifest_version": 3,
"author": "Michael Zheng",
"action": {
"default_popup": "index.html",
"default_icon": "icon.png",
"default_title": "Github Issues AI",
"default_width": 400,
"default_height": 500
},
"permissions": [
"identity"
],
"host_permissions": [
"https://github.com/*",
"http://localhost/*"
],
"content_security_policy": {
"extension_pages": "script-src 'self'; object-src 'self';"
},
"oauth2": {
"client_id": "792645551360-akijriedtk60h6v66oek6a9tmkli05lk.apps.googleusercontent.com",
"scopes": [
"openid",
"email",
"https://www.googleapis.com/auth/userinfo.email"
],
"redirect_uris": ["https://mgmbafiopljbjfhpleekdffnlonejdma.chromiumapp.org/"]
}
}