Evercontact is the highest-rated Contact Management App on Google Apps.
Grab contact details from ANYWHERE or let it happen…
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",
"manifest_version": 2,
"name": "Evercontact",
"version": "2.5",
"permissions": [
"tabs",
"http://*/*",
"https://*/*",
"contextMenus"
],
"browser_action": {
"default_title": "Click to capture contact from selected text",
"default_icon": "img/favicon.png",
"default_popup": "popup.html"
},
"icons": {
"16": "EverContact_16x16.png",
"48": "EverContact_48x48.png",
"128": "EverContact_128x128.png"
},
"background": {
"scripts": [
"assets/vendor/jquery-3.6.0.min.js",
"lib/jquery.jsonp-2.4.0.min.js",
"lib/knockout-2.1.0.js",
"lib/knockout.mapping-latest.js",
"config.js",
"viewModel.js",
"background.js",
"assets/vendor/md5.js"
],
"persistent": true
},
"options_page": "options.html",
"content_scripts": [
{
"exclude_globs": [],
"include_globs": [],
"js": [
"inject.js"
],
"matches": [
"http://mail.google.com/mail*",
"https://mail.google.com/mail*",
"http://mail.google.com/a/*",
"https://mail.google.com/a/*"
]
}
],
"content_security_policy": "default-src 'self' https://*.evercontact.com 'unsafe-eval'; script-src 'self' https://*.evercontact.com 'unsafe-eval'; img-src 'self' https://www.gravatar.com/avatar/; style-src 'self' https://fonts.googleapis.com 'unsafe-inline'; font-src 'self' https://fonts.gstatic.com data: chrome-extension-resource:;",
"web_accessible_resources": [
"gmail.js",
"Icon.png",
"img/*.png",
"options.html",
"onboarding.html",
"shake.css",
"img/up-arrow.gif",
"EverContact_48x48.png"
]
}