Salesforce Field Finder

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

Salesforce Field Finder là gì?

Salesforce Field Finder là một tiện ích mở rộng Chrome được phát triển bởi sachin.kadian, và tính năng chính của nó là "This extension give your api name of any field you want.".

Ả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 Field Finder

Tải xuống các tệp mở rộng Salesforce Field Finder 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

                        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                    

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

Tên Salesforce Field Finder Salesforce Field Finder
ID hplajapbnicfielfbpefhfnkcokkidmh
URL Chính Thức https://chromewebstore.google.com/detail/salesforce-field-finder/hplajapbnicfielfbpefhfnkcokkidmh
Mô tả This extension give your api name of any field you want.
Kích Thước Tệp 331 KB
Số Lần Cài Đặt 909
Phiên Bản Hiện Tại 1.1
Cập Nhật Lần Cuối 2015-09-03
Ngày Phát Hành 2015-09-03
Đánh Giá 4.00/5 Tổng số 4 Đánh Giá
Nhà Phát Triển sachin.kadian
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ 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\/*"
            ]
        }
    ]
}