Find email addresses on any website. Our Email Finder lets you collect leads and grow sales on the go.
Premium users can view and search full source code, and see the source code differences
between two versions.
Upgrade to premium
manifest.json
{
"background": {
"scripts": [
"js/background/googleAnalyticsEvents.js",
"js/background/newVersionChecker.js",
"js/background/newsChecker.js",
"js/sw.js"
]
},
"minimum_chrome_version": "92",
"content_scripts": [
{
"js": [
"js/content.js"
],
"matches": [
"<all_urls>"
]
},
{
"matches": [
"https://app.snov.io/*"
],
"js": [
"js/snovio/snovioEvents.js"
],
"run_at": "document_end"
},
{
"matches": [
"https://app.snov.io/*"
],
"js": [
"js/snovio/presence.js"
],
"run_at": "document_idle"
},
{
"matches": [
"https://app.snov.io/*"
],
"js": [
"js/snovio/signForApp.js"
],
"run_at": "document_start"
}
],
"default_locale": "en",
"description": "__MSG_appDesc__",
"icons": {
"19": "img/19.png",
"48": "img/48.png",
"128": "img/128.png"
},
"manifest_version": 2,
"name": "__MSG_appName__",
"permissions": [
"tabs",
"cookies",
"notifications",
"storage",
"<all_urls>",
"background",
"webRequest",
"webRequestBlocking"
],
"update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx",
"version": "2.1.2",
"browser_action": {
"default_popup": "html/popup.html"
},
"content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'"
}