Intercom Chrome Extension

Checks emails on the current page against users in your Intercom account. If found, it will add a link and information on the user.

Τι είναι το Intercom Chrome Extension;

Το Intercom Chrome Extension είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον Tauro Software, και η κύρια λειτουργία του είναι "Checks emails on the current page against users in your Intercom account. If found, it will add a link and information on the user.".

Στιγμιότυπα Επέκτασης

screenshot
screenshot
screenshot

Λήψη αρχείου CRX της επέκτασης Intercom Chrome Extension

Λήψη αρχείων επέκτασης Intercom Chrome Extension σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.

Οδηγίες Χρήσης της Επέκτασης

                        *INTERCOM HAS DEPRECATED THEIR API KEYS AND TOKENS SO THIS NO LONGER WORKS*
Code is available here if you want to fork/make a pull request: https://github.com/BrianH2/Intercom-Chrome-Extension/

------

Checks emails on the current page to see if they are users of your application in Intercom. If found, it will add a link to the Intercom user profile and information on the user.

Especially helpful if you are using a CRM (like HubSpot CRM) that does not include an Intercom integration. You can use this on a list of contacts in HubSpot to get info on them from Intercom.

It will show you the following from Intercom:
- the user's name
- days since the user signup
- the number of web sessions the user has had
- location of the user

Fully integrated with Salesforce, HubSpot CRM and Zoho CRM. 

** Permissions explained: **
* api.intercom.io - this permission is so the emails on the page can be sent to Intercom and information can be received. We do not see/record/change any information in your Intercom account.
* background - this is so the extension can check email addresses automatically on the page. It gets the emails and checks them against your Intercom account.
* active tab - the extension gets all email addresses on the page/tab you are on and sends them to Intercom to check if they are users and return information on them if they are.

Note that absolutely no information is sent to the developers or any third party (other than Intercom). Your data is yours and is safe with you. You can always check the source code, available on github: https://github.com/BrianH2/Intercom-Chrome-Extension/


** Usage: **
Note these steps only need to be followed once!

1. Once installed, open the options page by either (a) click on "options" under the extension listed in "chrome://extensions/" or (b) click on the extension in the menu bar and click on the "edit options" link.
2. Sign into Intercom and go to Settings > Integrations > New API Key to generate READ ONLY Intercom API credentials. More info here: https://developers.intercom.io/reference#authorization
3. Enter the API Key and App ID in the options page from step 1 and click save. Note the API key and App ID are saved locally to your Chrome browser using Chrome storage. We do not and never see your API credentials.
4. Save and close the options.
5. Now the extension will run automatically on any page you are on. To run the extension manually, simply click on the extension in the menu bar when you are on a page with email addresses.


** Feedback? **
Let us know in the Support tab above                    

Βασικές Πληροφορίες Επέκτασης

Όνομα Intercom Chrome Extension Intercom Chrome Extension
ID nacbmbmlibonpmhhacnnliibhpdpkpjl
Επίσημο URL https://chromewebstore.google.com/detail/intercom-chrome-extension/nacbmbmlibonpmhhacnnliibhpdpkpjl
Περιγραφή Checks emails on the current page against users in your Intercom account. If found, it will add a link and information on the user.
Μέγεθος Αρχείου 425 KB
Αριθμός Εγκαταστάσεων 784
Τρέχουσα Έκδοση 0.5.0
Τελευταία Ενημέρωση 2018-10-07
Ημερομηνία Δημοσίευσης 2018-10-07
Αξιολόγηση 5.00/5 Συνολικά 1 Αξιολογήσεις
Προγραμματιστής Tauro Software
Τύπος Πληρωμής free
Ιστότοπος Επέκτασης http://brianh2.github.io/Intercom-Chrome-Extension/
Διεύθυνση URL της Σελίδας Βοήθειας http://twitter.com/BrianTVH
Υποστηριζόμενες Γλώσσες en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Intercom Chrome Extension",
    "description": "Checks emails on the current page against users in your Intercom account. If found, it will add a link and information on the user.",
    "version": "0.5.0",
    "minimum_chrome_version": "26",
    "permissions": [
        "https:\/\/api.intercom.io\/",
        "activeTab",
        "storage"
    ],
    "background": {
        "scripts": [
            "scripts\/background.js"
        ],
        "persistent": false
    },
    "options_page": "options.html",
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "scripts\/jq.js",
                "scripts\/check_emails.js"
            ]
        },
        {
            "matches": [
                "https:\/\/www.linkedin.com\/company\/*"
            ],
            "js": [
                "scripts\/jq.js",
                "scripts\/linkedin.js"
            ]
        }
    ],
    "browser_action": {
        "default_popup": "popup.html",
        "default_icon": "images\/logo.png"
    },
    "icons": {
        "16": "images\/logo16.png",
        "48": "images\/logo48.png",
        "128": "images\/logo128.png"
    },
    "web_accessible_resources": [
        "images\/*.png"
    ],
    "manifest_version": 2
}