Salesforce API Fieldnames

Extension shows the API field names on detail pages

什么是Salesforce API Fieldnames?

Salesforce API Fieldnames是由Daniel Nakov开发的Chrome扩展程序,该扩展的主要功能是“Extension shows the API field names on detail pages”。

扩展截图

screenshot

下载Salesforce API Fieldnames扩展crx文件

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

扩展使用说明

                        Small extension to toggle between API field names and labels on salesforce detail pages

0.1.4
* Fixes issue where wrong API names are displayed
* removed jQuery to be hip

0.1.1
* Stopped using the tooling API. Uses REST api instead. Managed package fields now show up as well.

Complain and contribute on github: https://github.com/dnakov/force-apiNames
:)                    

扩展基本信息

名称 Salesforce API Fieldnames Salesforce API Fieldnames
ID oghajcjpbolpfoikoccffglngkphjgbo
官方URL https://chrome.google.com/webstore/detail/salesforce-api-fieldnames/oghajcjpbolpfoikoccffglngkphjgbo
简介 Extension shows the API field names on detail pages
文件大小 13.16 KB
安装次数 30,000
当前版本 0.1.4
更新时间 2016-07-28
上架时间 2016-07-28
评分 4.25/5 共125次评分
开发者 Daniel Nakov
付费类型 free
支持的语言 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Salesforce API Fieldnames",
    "version": "0.1.4",
    "manifest_version": 2,
    "description": "Extension shows the API field names on detail pages",
    "icons": {
        "16": "images\/icon16__c.png",
        "128": "images\/icon128__c.png"
    },
    "default_locale": "en",
    "background": {
        "scripts": [
            "scripts\/background.js"
        ]
    },
    "browser_action": {
        "default_icon": {
            "19": "images\/iconOff19__c.png",
            "38": "images\/iconOff__c.png"
        },
        "default_title": "apinames"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*.force.com\/*",
                "https:\/\/*.salesforce.com\/*"
            ],
            "js": [
                "scripts\/contentscript.js"
            ],
            "run_at": "document_end",
            "all_frames": false
        }
    ],
    "permissions": [
        "activeTab"
    ]
}