Salesforce API Fieldnames

Extension shows the API field names on detail pages

Salesforce API Fieldnamesคืออะไร?

Salesforce API Fieldnames เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Daniel Nakov และคุณลักษณะหลักของมันคือ "Extension shows the API field names on detail pages"

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

screenshot

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

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