-
-
Notifications
You must be signed in to change notification settings - Fork 70
/
manifest.json
78 lines (78 loc) · 2.15 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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
{
"version": "5.0.6",
"manifest_version": 3,
"default_locale": "en",
"name": "__MSG_appName__",
"short_name": "gas-github",
"author": "leonhartx.k@gmail.com",
"description": "__MSG_appDesc__",
"icons": {
"16": "icon/icon.png",
"48": "icon/icon.png",
"128": "icon/icon.png"
},
"background": {
"service_worker": "background/background.js",
"type": "module"
},
"options_ui": {
"page": "options/options.html"
},
"content_scripts": [
{
"matches":["https://script.google.com/*"],
"js":[
"lib/jquery.min.js",
"lib/diff.min.js",
"lib/diff2html.min.js",
"lib/diff2html-ui.min.js",
"lib/highlight.min.js",
"src/util.js",
"src/scm/github.js",
"src/scm/bitbucket.js",
"src/scm/gitlab.js",
"src/gas/script-api.js",
"src/gas-hub.js"
],
"css":[
"lib/diff2html.css",
"lib/github.css"
],
"all_frames": true,
"run_at": "document_end"
}
],
"content_security_policy": {
"extension_pages": "script-src 'self'; object-src 'self'"
},
"web_accessible_resources": [
{
"resources": [
"gas-hub.js",
"content/alert.html",
"content/button.html",
"content/modal.html",
"content/login.html"
],
"matches": ["https://script.google.com/*"]
},
{
"resources": [
"options/options.html"
],
"matches": ["*://*/*"]
}
],
"permissions": [
"identity",
"storage"
],
"host_permissions": [
"https://script.google.com/*"
],
"oauth2": {
"client_id": "971735641612-plgfavrj0vhpsd1brvquo4qt7m91ujs6.apps.googleusercontent.com",
"scopes":["https://www.googleapis.com/auth/script.projects"]
},
"key": "MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEApkXU5iUw1bq/mTyz8lR4l8jSgZgLAc6udwsO+FpdsisNrpCzy3EyDB52eibE+s+6IycE5G3XEkMMhtZfGOPe0BK3qz7DML1XQ2Q3GChe7rsRbWrQckzYMRwsoS6ogSJGEFccbWpzofKV1lZlc0Tu0SXVglF71b3gioPBU4K4ym1X44axuTeAjak9fqB7ICM8OkvxetenDXE+UN0zv+Y2SY+FdlY2Q2+QD5SDJ1PhydDXn7kAGiIYVzUbVWvmKyT0briT5niBbF+lMqmYeDMRCtzlcdI7ym0WGihx0ckDZJcmDksSMgEpNyzlGaYjx08+UHQ2O7a5nqUcUfUUg6307QIDAQAB"
}