-
Notifications
You must be signed in to change notification settings - Fork 35
/
manifest.json
32 lines (29 loc) · 860 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
{
"manifest_version": 3,
"name": "GmailJS Node Boilerplate Extension",
"short_name": "gmailjsnode",
"version": "1.1",
"author": "Jostein Kjønigsen <[email protected]>",
"description": "A minimal extension which demonstrates how to create a extension with Gmail.JS and NodeJS-based bundling.",
"content_scripts": [
{
"matches": [ "*://mail.google.com/*" ],
"js": [
"src/extensionInjector.js"
],
"run_at": "document_start"
}
],
"web_accessible_resources": [{
"resources": [
"dist/gmailJsLoader.js",
"dist/extension.js",
"dist/gmailJsLoader.js.map",
"dist/extension.js.map"
],
"matches": ["<all_urls>"]
}],
"host_permissions": [
"https://*/*"
]
}