-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmanifest.json
34 lines (28 loc) · 894 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
34
{
"manifest_version": 2,
"name": "Pipedrive Gmail Integration",
"description": "This extension uses your pipedrive user token to search pipedrive and attach the email associated with the organization/person/deal that the email is for.",
"version": "1.0",
"background": {
"scripts": [ "scripts/HttpRequest.js","scripts/background.js"],
"persistent": false
},
"content_scripts": [
{
"matches": ["https://mail.google.com/*"],
"js": [
"scripts/jquery-3.1.1.min.js",
"scripts/client_globals.js",
"scripts/ModalWindow.js",
"scripts/pipeDriveHeader.js",
"scripts/pipeToolbar.js",
"scripts/pipeList.js",
"scripts/scripts.js"
],
"css": ["css/mycss.css"]
}],
"permissions": [
"https://api.pipedrive.com/*",
"storage" ],
"web_accessible_resources":["img/*.svg"]
}