SignalHire - find email or phone number

SignalHire is a great way to find contact information in a couple of clicks.

什么是SignalHire - find email or phone number?

SignalHire - find email or phone number是由https://www.signalhire.com开发的Chrome扩展程序,该扩展的主要功能是“SignalHire is a great way to find contact information in a couple of clicks.”。

扩展截图

screenshot
screenshot
screenshot
screenshot
screenshot

下载SignalHire - find email or phone number扩展crx文件

下载SignalHire - find email or phone number扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        SignalHire allows you to easily find the most up to date business contact information and create accessible contact profiles so your sales team can see everything in one place.

EMAIL FINDER
Let’s you find verified up to date email addresses for LinkedIN profiles

PHONE NUMBER FINDER
Matches phone numbers to the created profile compiled from multiple sources. All phone numbers are verified so your sales team doesn’t need to do any cleanup.

BULK FINDER
Find contact details for up to 1,000 profiles at a time.

SignalHire Free EXTENSION:
- 10 free monthly contact credits for business accounts!
- One credit allows to find email and phone numbers for one contact person
- Supports direct export of contacts to major ATS and CRM providers

SignalHire Premium - learn more at at: https://www.signalhire.com/pricing

WHY SignalHire:
- All the details are searched and verified in real-time.
- Team accounts with no limit on seats
- Trusted by leaders from Amazon, IHS Markit, WellCare Health Plans, MongoDB and many more
- Hit rate on par with industry leaders such as Lusha, Hiretual and Rocketreach

WHO IS IT FOR?
- Recruitment professionals
- Sales & business development
- Marketing


Website: www.signalhire.com
Twitter: @SignalHire
Facebook: https://www.facebook.com/signalhire/
LinkedIn: https://www.linkedin.com/company/signalhire/

Questions? Drop us a line at [email protected]                    

扩展基本信息

名称 SignalHire - find email or phone number SignalHire - find email or phone number
ID aeidadjdhppdffggfgjpanbafaedankd
官方URL https://chromewebstore.google.com/detail/signalhire-find-email-or/aeidadjdhppdffggfgjpanbafaedankd
简介 SignalHire is a great way to find contact information in a couple of clicks.
文件大小 1002 KB
安装次数 291,896
当前版本 4.1.16
更新时间 2024-02-28
上架时间 2020-03-31
评分 4.38/5 共281次评分
开发者 https://www.signalhire.com
电子邮箱 [email protected]
付费类型 free
扩展官网 https://www.signalhire.com/extension
帮助页面URL https://www.signalhire.com/privacy
隐私政策页面URL https://signalhire.com/privacy
支持的语言 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "SignalHire - find email or phone number",
    "short_name": "SH",
    "description": "SignalHire is a great way to find contact information in a couple of clicks.",
    "version": "4.1.16",
    "icons": {
        "16": "icons\/icon_16.png",
        "30": "icons\/icon_30.png",
        "48": "icons\/icon_48.png",
        "128": "icons\/icon_128.png"
    },
    "background": {
        "type": "module",
        "service_worker": "background.js"
    },
    "action": {
        "default_icon": "icons\/icon_30.png",
        "default_title": "Find contacts with SignalHire!",
        "default_popup": "popup.html"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*.linkedin.com\/*"
            ],
            "js": [
                "content.js"
            ],
            "css": [
                "assets\/content.css"
            ],
            "run_at": "document_idle"
        },
        {
            "matches": [
                "https:\/\/*.linkedin.com\/*"
            ],
            "js": [
                "contentLI.js"
            ],
            "run_at": "document_start"
        },
        {
            "matches": [
                "https:\/\/github.com\/*",
                "https:\/\/*.facebook.com\/*",
                "https:\/\/twitter.com\/*"
            ],
            "js": [
                "contentSocial.js"
            ],
            "run_at": "document_start"
        },
        {
            "matches": [
                "https:\/\/www.signalhire.com\/*"
            ],
            "js": [
                "contentSH.js"
            ],
            "run_at": "document_start"
        }
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "assets\/*",
                "inject.js",
                "injectLI.js"
            ],
            "matches": [
                ""
            ]
        }
    ],
    "permissions": [
        "storage",
        "cookies",
        "tabs",
        "scripting",
        "notifications"
    ],
    "host_permissions": [
        "",
        "https:\/\/www.signalhire.com\/*"
    ],
    "content_security_policy": {
        "extension_pages": "default-src 'self'; style-src 'sha256-UkqLW2iCjMAcH5APyL9ClEdxwqu9gNPiwcEEy\/1uteM='; connect-src *; img-src 'self' data: media-exp1.licdn.com;"
    }
}