Salesforce Object Finder

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

What is Salesforce Object Finder?

Salesforce Object Finder is a Chrome extension developed by Paolo Pelliccione, and its main feature is "This extension allows you to find out in which object is located a specific field.".

Extension Screenshots

screenshot
screenshot
screenshot

Download Salesforce Object Finder Extension CRX File

Download Salesforce Object Finder extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

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

Extension Basic Information

Name Salesforce Object Finder Salesforce Object Finder
ID gdofopjmbeikonciibgfbcenjohdilap
Official URL 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.
File Size 120 KB
Installation Count 196
Current Version 0.13
Last Updated 2016-03-31
Publish Date 2016-03-30
Rating 5.00/5 Total 9 Ratings
Developer Paolo Pelliccione
Payment Type free
Supported Languages 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\/*"
    ]
}