-
Notifications
You must be signed in to change notification settings - Fork 0
/
manifest.json
36 lines (36 loc) · 883 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
35
36
{
"name": "WhatsPipe Escola EDTI",
"version": "1.1",
"description": "Whatsapp web button to pipedrive by Escola EDTI",
"manifest_version": 2,
"permissions": ["tabs", "activeTab", "storage"],
"background": {
"scripts": ["main.js"],
"persistent": false
},
"options_ui": {
"page": "options.html",
"open_in_tab": false
},
"content_scripts": [
{
"matches": ["https://*.pipedrive.com/*", "https://web.whatsapp.com/*"],
"js": [
"whatsappExtension.js",
"jquery.js",
"pipeDriveWhatsappExtension.js",
"pipeDriveWhatsappExtensionDeal.js",
"content.js"
],
"css": ["style.css"]
}
],
"web_accessible_resources": ["images/16.png"],
"icons": {
"16": "images/16.png",
"32": "images/32.png",
"48": "images/48.png",
"64": "images/64.png",
"128": "images/64.png"
}
}