SB Hacks Contact Finder

Find contacs with ease

Что такое SB Hacks Contact Finder?

SB Hacks Contact Finder - это расширение Chrome, разработанное http://chan4est.com, и его основная функция - "Find contacs with ease".

Снимки экрана расширения

screenshot

Скачать файл CRX расширения SB Hacks Contact Finder

Скачайте файлы расширений SB Hacks Contact Finder в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.

Инструкции по использованию расширения

                        This simple dropdown extension will allow you to easily pop in your potential contact's information in the hopes that you can find a valid email.                    

Основная информация о расширении

Название SB Hacks Contact Finder SB Hacks Contact Finder
ID feofcnpnghfccbpgiaejheefpiohmdga
Официальный URL https://chrome.google.com/webstore/detail/sb-hacks-contact-finder/feofcnpnghfccbpgiaejheefpiohmdga
Описание Find contacs with ease
Размер файла 943 KB
Количество установок 13
Текущая Версия 1.0.1
Последнее Обновление 2018-05-04
Дата публикации 2018-05-04
Разработчик http://chan4est.com
Тип оплаты free
Поддерживаемые языки en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "SB Hacks Contact Finder",
    "version": "1.0.1",
    "description": "Find contacs with ease",
    "options_page": "about.html",
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/mail.google.com\/*"
            ],
            "js": [
                "main.js"
            ]
        }
    ],
    "page_action": {
        "default_icon": "images\/icon-128.png",
        "default_popup": "sponsors.html"
    },
    "permissions": [
        "declarativeContent",
        "activeTab",
        "tabs",
        "http:\/\/*\/*",
        "https:\/\/*\/*"
    ],
    "icons": {
        "16": "images\/icon-16.png",
        "48": "images\/icon-48.png",
        "128": "images\/icon-128.png"
    },
    "manifest_version": 2
}