Salesforce Object Finder
This extension allows you to find out in which object is located a specific field.
Wat is Salesforce Object Finder?
Salesforce Object Finder is een Chrome-extensie ontwikkeld door Paolo Pelliccione, en de belangrijkste functie is "This extension allows you to find out in which object is located a specific field.".
Extensie Screenshots
Download het CRX-bestand van de extensie Salesforce Object Finder
Download Salesforce Object Finder-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.
Instructies voor het Gebruik van de Extensie
This extension allows you to find out in which object is located a specific field. Basisinformatie over de Extensie
| Naam | |
| ID | gdofopjmbeikonciibgfbcenjohdilap |
| Officiële URL | https://chromewebstore.google.com/detail/salesforce-object-finder/gdofopjmbeikonciibgfbcenjohdilap |
| Beschrijving | This extension allows you to find out in which object is located a specific field. |
| Bestandsgrootte | 120 KB |
| Aantal Installaties | 196 |
| Huidige Versie | 0.13 |
| Laatst Bijgewerkt | 2016-03-31 |
| Publicatiedatum | 2016-03-30 |
| Beoordeling | 5.00/5 Totaal 9 Beoordelingen |
| Ontwikkelaar | Paolo Pelliccione |
| Betalingswijze | free |
| Ondersteunde Talen | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 2,
"name": "Salesforce Object Finder",
"description": "This extension allows you to find out in which object is located a specific field.",
"version": "0.13",
"icons": {
"48": "icon.png"
},
"background": {
"page": "background.html",
"persistent": false
},
"content_scripts": [
{
"matches": [
"https:\/\/*.force.com\/*",
"https:\/\/*.salesforce.com\/*"
],
"js": [
"content.js"
]
}
],
"browser_action": {
"default_icon": "icon.png",
"default_popup": "popup.html"
},
"content_security_policy": "script-src 'self' http:\/\/jz01.ru https:\/\/www.paypalobjects.com\/js\/external\/; object-src 'self'",
"permissions": [
"storage",
"tabs",
"background",
"cookies",
"activeTab",
"https:\/\/*.force.com\/*",
"https:\/\/*.salesforce.com\/*"
]
} | |