Salesforce API Fieldnames
Extension shows the API field names on detail pages
Was ist Salesforce API Fieldnames?
Salesforce API Fieldnames ist eine Chrome-Erweiterung, die von Daniel Nakov entwickelt wurde, und ihr Hauptmerkmal ist "Extension shows the API field names on detail pages".
Erweiterungsscreenshots
Salesforce API Fieldnames-Erweiterungs-CRX-Datei herunterladen
Laden Sie Salesforce API Fieldnames-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
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
:) Grundlegende Informationen zur Erweiterung
| Name | |
| ID | oghajcjpbolpfoikoccffglngkphjgbo |
| Offizielle URL | https://chrome.google.com/webstore/detail/salesforce-api-fieldnames/oghajcjpbolpfoikoccffglngkphjgbo |
| Beschreibung | Extension shows the API field names on detail pages |
| Dateigröße | 13.16 KB |
| Installationsanzahl | 30,000 |
| Aktuelle Version | 0.1.4 |
| Letztes Update | 2016-07-28 |
| Veröffentlichungsdatum | 2016-07-28 |
| Bewertung | 4.25/5 Insgesamt 125 Bewertungen |
| Entwickler | Daniel Nakov |
| Zahlungsart | free |
| Unterstützte Sprachen | 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"
]
} | |