Salesforce Searchbox

Salesforce Searchbox

A simple search box on top of all configuration items of salesforce setup items.

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 Searchbox",
  "short_name": "SF Search",
  "description": "A simple search box on top of all configuration items of salesforce setup items.",
  "version": "2.1",
  "permissions": [
    "https://*.salesforce.com/*",
    "http://*.salesforce.com/*",
    "https://*.cloudforce.com/*",
    "http://*.cloudforce.com/*"
  ],
  "content_scripts": [
    {
      "js": [
        "jquery.min.js",
        "background.js"
      ],
      "matches": [
        "http://*.salesforce.com/*",
        "https://*.salesforce.com/*",
        "http://*.cloudforce.com/*",
        "https://*.cloudforce.com/*"
      ]
    }
  ]
}