Armageddon-Salesforce LinkedIn Checker

Check if LinkedIn user is already present in Salesforce

Τι είναι το Armageddon-Salesforce LinkedIn Checker;

Το Armageddon-Salesforce LinkedIn Checker είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον Kaushik Ray, και η κύρια λειτουργία του είναι "Check if LinkedIn user is already present in Salesforce".

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

screenshot
screenshot

Λήψη αρχείου CRX της επέκτασης Armageddon-Salesforce LinkedIn Checker

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

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

                        So you are using Salesforce and LinkedIn to manage your Contacts and Leads.!!

Here is one plugin to check if a certain LinkedIn profile is already present in your connected Salesforce org or not.

On your browser you do not need to be always logged in log in to get results. Features - 
1. Connect once and forget, connect using the plugin and authorize.
2. Go to any LinkedIn profile page and you will be able to view how many matching Contacts or Leads are already present in connected org.
3. Displays top 2 results and can directly jump to the record detail page from LinkedIn user detail page
4. If there are more results, click on the plugin icon and directly get all results related to the LinkedIn user
5. No extra package needed to be installed on org so less maintenance and simplistic approach

There are lots of future scope planned for this plugin like - 
1. Connect with Gmail and Facebook
2. Give greater insights
3. Directly create new Leads / Contacts from the plugin itself

Also do give a good star rating if it helps you.!!

I have created a github repo to track issues and improvements. Log all of them here and I will revert will all possible help - https://github.com/KaushikRay/Chrome-SF-SocialChecker-Armageddon/issues

Whats New (V 1.1.1)
Bug Fixes - https://github.com/KaushikRay/Chrome-SF-SocialChecker-Armageddon/issues/                    

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

Όνομα Armageddon-Salesforce LinkedIn Checker Armageddon-Salesforce LinkedIn Checker
ID gpbocgnhdopagefbfgohcjpmdnceidkd
Επίσημο URL https://chromewebstore.google.com/detail/armageddon-salesforce-lin/gpbocgnhdopagefbfgohcjpmdnceidkd
Περιγραφή Check if LinkedIn user is already present in Salesforce
Μέγεθος Αρχείου 169 KB
Αριθμός Εγκαταστάσεων 15
Τρέχουσα Έκδοση 1.1.2
Τελευταία Ενημέρωση 2016-04-12
Ημερομηνία Δημοσίευσης 2016-04-12
Αξιολόγηση 5.00/5 Συνολικά 1 Αξιολογήσεις
Προγραμματιστής Kaushik Ray
Ηλεκτρονικό ταχυδρομείο [email protected]
Τύπος Πληρωμής free
Υποστηριζόμενες Γλώσσες en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Armageddon-Salesforce LinkedIn Checker",
    "description": "Check if LinkedIn user is already present in Salesforce",
    "version": "1.1.2",
    "content_scripts": [
        {
            "matches": [
                "https:\/\/login.salesforce.com\/services\/oauth2\/success*data_explorer_test*"
            ],
            "js": [
                "\/oauth2\/oauth2_inject.js"
            ],
            "run_at": "document_start"
        },
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "jquery-1.12.1.min.js",
                "contentscript.js"
            ]
        }
    ],
    "background": {
        "page": "background.html"
    },
    "icons": {
        "48": "icon.png"
    },
    "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'",
    "permissions": [
        "tabs",
        "https:\/\/*.salesforce.com\/",
        "https:\/\/mail.google.com\/*"
    ],
    "browser_action": {
        "default_icon": "icon.png",
        "default_popup": "explorer.html"
    },
    "web_accessible_resources": [
        "oauth2\/oauth2.html",
        "Lead.png",
        "Contact.png",
        "icon.png"
    ]
}