forked from closeio/lead-clipper
-
Notifications
You must be signed in to change notification settings - Fork 0
/
manifest.json
39 lines (36 loc) · 933 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
37
38
39
{
"manifest_version": 2,
"name": "Close.io Lead Clipper",
"description": "Clip contact data from ANY website and put it straight in your Close.io account.",
"version": "1.4.9",
"permissions": [
"webRequest",
"webRequestBlocking",
"tabs",
"cookies",
"https://*.close.io/",
"http://*.close.io/"
],
"browser_action": {
"default_icon": "img/icon-16px.png",
"default_title": "Close.io Lead Clipper"
},
"background": {
"page": "templates/background.html"
},
"content_scripts": [
{
"js": [
"js/lib/jquery.js",
"js/contentscript.js"
],
"matches": ["<all_urls>"],
"run_at": "document_end"
}
],
"icons": {
"128": "img/icon-128px.png",
"16": "img/icon-16px.png",
"48": "img/icon-48px.png"
}
}