-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathmanifest.json
56 lines (47 loc) · 1.14 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
{
"description": "easily collect, export, and enrich leads from linkedin",
"manifest_version": 2,
"name": "linkedin sales helper",
"version": "1.32",
"homepage_url": "http://linkedinsaleshelper.com/",
"icons": {
"48": "icons/lsh-48.png"
},
"permissions": [
// "activeTab",
"downloads",
"storage",
"*://*.linkedin.com/*",
"*://*.zoominfo.com/*"
],
// "content_scripts": [ // ref: https://stackoverflow.com/a/7655808/4513452
// {
// "matches": ["*://*.linkedin.com/sales/*", "*://*.zoominfo.com/*"],
// "js": ["content_scripts/helper.js"]
// }
// ],
"options_ui": {
"browser_style": true,
"open_in_tab": true,
"page": "settings/options.html"
},
"browser_specific_settings": {
"gecko": {
"id": "[email protected]"
}
},
// update_url
"browser_action": {
"default_icon": "icons/linkedin-sales-helper.png",
// "theme_icons": [{
// "light": "icons/beasts-32-light.png",
// "dark": "icons/beasts-32.png",
// "size": 32
// }],
"default_title": "linkedin sales helper",
"default_popup": "popup/toolbox.html"
},
"background": {
"scripts": ["background/csv_downloader.js"]
}
}