Salesforce Object Finder

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

什么是Salesforce Object Finder?

Salesforce Object Finder是由Paolo Pelliccione开发的Chrome扩展程序,该扩展的主要功能是“This extension allows you to find out in which object is located a specific field.”。

扩展截图

screenshot
screenshot
screenshot

下载Salesforce Object Finder扩展crx文件

下载Salesforce Object Finder扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

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

扩展基本信息

名称 Salesforce Object Finder Salesforce Object Finder
ID gdofopjmbeikonciibgfbcenjohdilap
官方URL https://chromewebstore.google.com/detail/salesforce-object-finder/gdofopjmbeikonciibgfbcenjohdilap
简介 This extension allows you to find out in which object is located a specific field.
文件大小 120 KB
安装次数 196
当前版本 0.13
更新时间 2016-03-31
上架时间 2016-03-30
评分 5.00/5 共9次评分
开发者 Paolo Pelliccione
付费类型 free
支持的语言 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\/*"
    ]
}