Inspect and view changes in Outreach Everywhere source codes across current and past versions
Premium users can view and search full source code, and see the source code differences
between two versions.
Upgrade to premium
manifest.json
{
"update_url": "https://clients2.google.com/service/update2/crx",
"name": "Outreach Everywhere",
"version": "3.2.5",
"manifest_version": 3,
"description": "Maximize your sales potential, anywhere you go!",
"homepage_url": "https://outreach.io",
"permissions": [
"tabs",
"storage",
"declarativeNetRequest",
"offscreen"
],
"host_permissions": [
"<all_urls>"
],
"externally_connectable": {
"matches": [
"*://sidebar.outreach.io/*",
"*://web.outreach.io/*",
"*://login.outreach.io/extension-auth/*"
]
},
"icons": {
"16": "img/16.png",
"48": "img/48.png",
"128": "img/128.png"
},
"background": {
"service_worker": "background.js"
},
"content_scripts": [
{
"matches": [
"https://calendar.google.com/*"
],
"all_frames": true,
"js": [
"vendor-content.js",
"gcal.js"
],
"run_at": "document_end"
},
{
"matches": [
"https://contacts.google.com/widget/hovercard/*"
],
"all_frames": true,
"js": [
"vendor-content.js",
"gcontactsCard.js"
],
"run_at": "document_end"
},
{
"matches": [
"https://mail.google.com/*"
],
"all_frames": true,
"css": [
"styles/gmail.css"
],
"js": [
"vendor-content.js",
"gmail.js"
],
"run_at": "document_end"
},
{
"matches": [
"https://meet.google.com/*"
],
"all_frames": true,
"js": [
"vendor-content.js",
"gmeet.js"
],
"run_at": "document_end"
},
{
"matches": [
"*://*.linkedin.com/*"
],
"all_frames": false,
"js": [
"vendor-content.js",
"linkedin.js"
],
"run_at": "document_end"
},
{
"matches": [
"*://*.lightning.force.com/*"
],
"all_frames": true,
"css": [
"styles/salesforceLightning.css"
],
"js": [
"vendor-content.js",
"salesforceLightning.js"
],
"run_at": "document_end"
},
{
"matches": [
"*://*.salesforce.com/*",
"*://*.visualforce.com/*",
"*://*.vf.force.com/*",
"*://*.visual.force.com/*"
],
"all_frames": false,
"exclude_globs": [
"https://login.*"
],
"css": [
"styles/salesforceClassic.css"
],
"js": [
"vendor-content.js",
"salesforceClassic.js"
],
"run_at": "document_end"
},
{
"matches": [
"*://*.dynamics.com/*"
],
"all_frames": false,
"css": [
"styles/microsoftDynamics.css"
],
"js": [
"vendor-content.js",
"microsoftDynamics.js"
],
"run_at": "document_end"
},
{
"matches": [
"https://*.outreach.io/*"
],
"include_globs": [
"https://web.*",
"https://sidebar.*",
"https://app??.*",
"https://a.web.*"
],
"exclude_globs": [
"*/kaia/live*",
"*/k/live*",
"*/mi/live*"
],
"all_frames": true,
"js": [
"outreachAppAddons.js"
],
"run_at": "document_start"
},
{
"matches": [
"https://*.outreach.io/*"
],
"include_globs": [
"https://web.*",
"https://sidebar.*",
"https://app??.*",
"https://a.web.*"
],
"exclude_globs": [
"*/kaia/live*",
"*/k/live*",
"*/mi/live*"
],
"all_frames": false,
"js": [
"vendor-content.js",
"outreachApp.js"
],
"run_at": "document_end"
},
{
"matches": [
"https://*.outreach.io/*"
],
"include_globs": [
"https://web.*",
"https://sidebar.*",
"https://app??.*",
"https://a.web.*"
],
"exclude_globs": [
"*/kaia/live*",
"*/k/live*",
"*/mi/live*"
],
"all_frames": true,
"js": [
"vendor-content.js",
"bridge.js"
],
"run_at": "document_start"
},
{
"matches": [
"https://accounts.outreach.io/users/sign_in",
"https://accounts.outreach.io/users/sign_in/",
"https://login.outreach.io/*"
],
"exclude_globs": [
"*/claim*",
"*/password/login*",
"*/password/reset*",
"*/password/set*",
"*/sso/callback*",
"*/provision*"
],
"all_frames": false,
"js": [
"accounts.js"
],
"run_at": "document_start"
},
{
"matches": [
"*://localhost/*"
],
"include_globs": [
"*/mail.google.com/*"
],
"all_frames": true,
"css": [
"styles/gmail.css"
],
"js": [
"vendor-content.js",
"gmail.js"
],
"run_at": "document_end"
}
],
"devtools_page": "devtools/index.html",
"action": {
"default_icon": {
"19": "img/19.png",
"38": "img/38.png"
}
},
"web_accessible_resources": [
{
"resources": [
"orca-container.html",
"gmail-event-proxy.js",
"gmail-globals.js",
"sfdc-tab-navigation.js",
"outreach-globals.js",
"img/tracking.gif",
"iframe-sidebar-container.html",
"*.woff",
"*.woff2"
],
"matches": [
"<all_urls>"
]
}
],
"declarative_net_request": {
"rule_resources": [
{
"id": "openTracking",
"enabled": true,
"path": "rules/openTracking.json"
}
]
}
}