Salesforce API Fieldnames

Extension shows the API field names on detail pages

Salesforce API Fieldnames là gì?

Salesforce API Fieldnames là một tiện ích mở rộng Chrome được phát triển bởi Daniel Nakov, và tính năng chính của nó là "Extension shows the API field names on detail pages".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng Salesforce API Fieldnames

Tải xuống các tệp mở rộng Salesforce API Fieldnames dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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
:)                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Salesforce API Fieldnames Salesforce API Fieldnames
ID oghajcjpbolpfoikoccffglngkphjgbo
URL Chính Thức https://chrome.google.com/webstore/detail/salesforce-api-fieldnames/oghajcjpbolpfoikoccffglngkphjgbo
Mô tả Extension shows the API field names on detail pages
Kích Thước Tệp 13.16 KB
Số Lần Cài Đặt 30,000
Phiên Bản Hiện Tại 0.1.4
Cập Nhật Lần Cuối 2016-07-28
Ngày Phát Hành 2016-07-28
Đánh Giá 4.25/5 Tổng số 125 Đánh Giá
Nhà Phát Triển Daniel Nakov
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ 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"
    ]
}