Salesforce API Fieldnames

Extension shows the API field names on detail pages

Salesforce API Fieldnames क्या है?

Salesforce API Fieldnames Daniel Nakov द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Extension shows the API field names on detail pages"।

एक्सटेंशन स्क्रीनशॉट्स

screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Salesforce API Fieldnames एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ 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"
    ]
}