SB Hacks Contact Finder

Find contacs with ease

Cos'è SB Hacks Contact Finder?

SB Hacks Contact Finder è un'estensione di Chrome sviluppata da http://chan4est.com, e la sua funzione principale è "Find contacs with ease".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione SB Hacks Contact Finder

Scarica i file di estensione SB Hacks Contact Finder in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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.                    

Informazioni di Base sull'Estensione

Nome SB Hacks Contact Finder SB Hacks Contact Finder
ID feofcnpnghfccbpgiaejheefpiohmdga
URL Ufficiale https://chrome.google.com/webstore/detail/sb-hacks-contact-finder/feofcnpnghfccbpgiaejheefpiohmdga
Descrizione Find contacs with ease
Dimensione del File 943 KB
Conteggio Installazioni 13
Versione Corrente 1.0.1
Ultimo Aggiornamento 2018-05-04
Data di Pubblicazione 2018-05-04
Sviluppatore http://chan4est.com
Tipo di Pagamento free
Lingue Supportate 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
}