SB Hacks Contact Finder

Find contacs with ease

Co to jest SB Hacks Contact Finder?

SB Hacks Contact Finder to rozszerzenie Chrome opracowane przez http://chan4est.com, a jego główną funkcją jest „Find contacs with ease”.

Zrzuty ekranu rozszerzenia

screenshot

Pobierz plik CRX rozszerzenia SB Hacks Contact Finder

Pobierz pliki rozszerzeń SB Hacks Contact Finder w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        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.                    

Podstawowe informacje o rozszerzeniu

Nazwa SB Hacks Contact Finder SB Hacks Contact Finder
ID feofcnpnghfccbpgiaejheefpiohmdga
Oficjalny URL https://chrome.google.com/webstore/detail/sb-hacks-contact-finder/feofcnpnghfccbpgiaejheefpiohmdga
Opis Find contacs with ease
Rozmiar pliku 943 KB
Liczba instalacji 13
Aktualna Wersja 1.0.1
Ostatnia Aktualizacja 2018-05-04
Data Publikacji 2018-05-04
Deweloper http://chan4est.com
Typ Płatności free
Obsługiwane Języki 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
}