Salesforce Field Finder

Salesforce Field Finder

This extension give your api name of any field you want.

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 Field Finder",
  "description": "This extension give your api name of any field you want.",
  "version": "1.1",
  "browser_action": {
    "default_icon": "icon.png",
    "default_popup": "popup.html"
  },
  "permissions": [
    "activeTab",
    "https://ajax.googleapis.com/"
  ],
  "background": {
    "scripts": [
      "jquery.js",
      "background.js"
    ]
  },
  "content_scripts": [
    {
      "js": [
        "jquery.js",
        "forcetk.js",
        "contentScript.js"
      ],
      "matches": [
        "https://*.salesforce.com/*",
        "https://*.force.com/*"
      ]
    }
  ]
}