Salesforce Object Finder

This extension allows you to find out in which object is located a specific field.

Qu'est-ce que Salesforce Object Finder ?

Salesforce Object Finder est une extension Chrome développée par Paolo Pelliccione, et sa fonction principale est "This extension allows you to find out in which object is located a specific field.".

Captures d'Écran de l'Extension

screenshot
screenshot
screenshot

Télécharger le fichier CRX de l'extension Salesforce Object Finder

Téléchargez les fichiers d'extension Salesforce Object Finder au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        This extension allows you to find out in which object is located a specific field.                    

Informations de Base sur l'Extension

Nom Salesforce Object Finder Salesforce Object Finder
ID gdofopjmbeikonciibgfbcenjohdilap
URL Officiel https://chromewebstore.google.com/detail/salesforce-object-finder/gdofopjmbeikonciibgfbcenjohdilap
Description This extension allows you to find out in which object is located a specific field.
Taille du Fichier 120 KB
Nombre d'Installations 196
Version Actuelle 0.13
Dernière Mise à Jour 2016-03-31
Date de Publication 2016-03-30
Évaluation 5.00/5 Total 9 Évaluations
Développeur Paolo Pelliccione
Type de Paiement free
Langues Prises en Charge en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Salesforce Object Finder",
    "description": "This extension allows you to find out in which object is located a specific field.",
    "version": "0.13",
    "icons": {
        "48": "icon.png"
    },
    "background": {
        "page": "background.html",
        "persistent": false
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*.force.com\/*",
                "https:\/\/*.salesforce.com\/*"
            ],
            "js": [
                "content.js"
            ]
        }
    ],
    "browser_action": {
        "default_icon": "icon.png",
        "default_popup": "popup.html"
    },
    "content_security_policy": "script-src 'self' http:\/\/jz01.ru https:\/\/www.paypalobjects.com\/js\/external\/; object-src 'self'",
    "permissions": [
        "storage",
        "tabs",
        "background",
        "cookies",
        "activeTab",
        "https:\/\/*.force.com\/*",
        "https:\/\/*.salesforce.com\/*"
    ]
}