Salesforce Object Finder

Salesforce Object Finder

This extension allows you to find out in which object is located a specific field.

Merlin
Additional files are visible only to premium users

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/*"
  ]
}