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 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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"
    ]
}