Salesforce Field Finder

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

Salesforce Field Finderคืออะไร?

Salesforce Field Finder เป็นส่วนขยายของ Chrome ที่พัฒนาโดย sachin.kadian และคุณลักษณะหลักของมันคือ "This extension give your api name of any field you want."

ภาพหน้าจอของส่วนขยาย

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Salesforce Field Finder

ดาวน์โหลดไฟล์ส่วนขยาย 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\/*"
            ]
        }
    ]
}