Salesforce Field Finder

This extension give your api name of any field you want.

什么是Salesforce Field Finder?

Salesforce Field Finder是由sachin.kadian开发的Chrome扩展程序,该扩展的主要功能是“This extension give your api name of any field you want.”。

扩展截图

screenshot

下载Salesforce Field Finder扩展crx文件

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

扩展使用说明

                        This Extension saves your few clicks to get api name of any field. You can just choose your object name and get all the field with their api names. Search is also available in case of Large number of fields                    

扩展基本信息

名称 Salesforce Field Finder Salesforce Field Finder
ID hplajapbnicfielfbpefhfnkcokkidmh
官方URL https://chromewebstore.google.com/detail/salesforce-field-finder/hplajapbnicfielfbpefhfnkcokkidmh
简介 This extension give your api name of any field you want.
文件大小 331 KB
安装次数 909
当前版本 1.1
更新时间 2015-09-03
上架时间 2015-09-03
评分 4.00/5 共4次评分
开发者 sachin.kadian
付费类型 free
支持的语言 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Salesforce Field Finder",
    "description": "This extension give your api name of any field you want.",
    "version": "1.1",
    "browser_action": {
        "default_icon": "icon.png",
        "default_popup": "popup.html"
    },
    "permissions": [
        "activeTab",
        "https:\/\/ajax.googleapis.com\/"
    ],
    "background": {
        "scripts": [
            "jquery.js",
            "background.js"
        ]
    },
    "content_scripts": [
        {
            "js": [
                "jquery.js",
                "forcetk.js",
                "contentScript.js"
            ],
            "matches": [
                "https:\/\/*.salesforce.com\/*",
                "https:\/\/*.force.com\/*"
            ]
        }
    ]
}