Data is synced from the Chrome Web Store. View the official store page for the most current information.
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 3,
"name": "Email Tracker for Gmail by EngageBay",
"description": "Free Email Tracker & LinkedIn Lead Generator. Track emails & capture leads to EngageBay CRM \u2014 right from Gmail, Outlook, & LinkedIn.",
"version": "2.1.0",
"action": {
"default_popup": "popup.html",
"default_title": "EngageBay",
"default_icon": {
"16": "images\/icon_16.png",
"32": "images\/icon_32.png",
"48": "images\/icon_48.png",
"128": "images\/icon_128.png"
}
},
"icons": {
"16": "images\/icon_16.png",
"32": "images\/icon_32.png",
"48": "images\/icon_48.png",
"128": "images\/icon_128.png"
},
"content_scripts": [
{
"matches": [
"https:\/\/mail.google.com\/*",
"https:\/\/inbox.google.com\/*"
],
"js": [
"content_gmail.js"
],
"css": [
"css\/gmail.css",
"css\/typeahead.css",
"css\/commons.css"
],
"run_at": "document_end"
},
{
"matches": [
"*:\/\/*.outlook.live.com\/*",
"*:\/\/*.outlook.office365.com\/*",
"*:\/\/*.outlook.office.com\/*"
],
"js": [
"content_outlook.js"
],
"css": [
"css\/outlook.css",
"css\/commons.css"
],
"run_at": "document_end"
},
{
"matches": [
"https:\/\/*.linkedin.com\/*",
"http:\/\/*.linkedin.com\/*"
],
"js": [
"content_linkedin.js",
"content_linkedin_profile_details.js"
],
"run_at": "document_end",
"all_frames": true
},
{
"matches": [
"*:\/\/*.appspot.com\/*",
"*:\/\/*.engagebay.com\/*",
"http:\/\/localhost:8888\/*"
],
"js": [
"content_engagebay.js",
"content_linkedin_gadget.js"
],
"run_at": "document_end",
"all_frames": true,
"css": []
},
{
"matches": [
"https:\/\/*.linkedin.com\/*",
"http:\/\/*.linkedin.com\/*"
],
"js": [
"content_linkedin_widget_frame_events.js"
],
"run_at": "document_start",
"all_frames": true
},
{
"matches": [
"https:\/\/*.google.co.in\/search?num=100*",
"http:\/\/*.google.co.in\/search?num=100*",
"https:\/\/*.google.com\/search?num=100*",
"https:\/\/www.google.com\/search?gws_rd=cr&as_qdr=all&q=*",
"https:\/\/www.google.co.in\/search?gws_rd=cr&as_qdr=all&q=*",
"https:\/\/*.google.com\/search?q=*"
],
"js": [
"content_linkedin_generic.js"
],
"css": [
"css\/commons.css"
],
"run_at": "document_end"
}
],
"background": {
"service_worker": "background.js",
"type": "module",
"matches": [
"<all_urls>"
]
},
"permissions": [
"activeTab",
"management",
"notifications",
"cookies",
"tabs",
"storage",
"alarms"
],
"web_accessible_resources": [
{
"resources": [
"pageWorld.js",
"images\/*",
"inject\/*"
],
"matches": [
"<all_urls>"
]
}
],
"host_permissions": [
"https:\/\/mail.google.com\/",
"<all_urls>"
]
}