Apex Finder

Apex Finder

This extension find an apex Class/Trigger/Page.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Apex Finder",
  "description": "This extension find an apex Class/Trigger/Page.",
  "version": "1.4",
  "browser_action": {
    "default_icon": "icon.png",
    "default_popup": "popup.html"
  },
  "background": {
    "scripts": [
      "jquery.min.js",
      "jquery-ui-1.8.16.custom.min.js",
      "background.js"
    ],
    "css": [
      "jquery-ui-1.8.16.custom.css",
      "popup.css"
    ],
    "persistent": true
  },
  "icons": {
    "128": "ApexFinder.png"
  },
  "web_accessible_resources": [
    "jquery.min.js",
    "jquery-ui-1.8.16.custom.min.js",
    "background.js",
    "content.js",
    "jquery-ui-1.8.16.custom.css",
    "popup.html",
    "ApexFinder.png",
    "content.html",
    "popup.css"
  ],
  "content_scripts": [
    {
      "matches": [
        "https://*.force.com/*",
        "https://*.salesforce.com/*",
        "https://*.cloudforce.com/*"
      ],
      "css": [
        "jquery-ui-1.8.16.custom.css",
        "popup.css"
      ],
      "js": [
        "jquery.min.js",
        "jquery-ui-1.8.16.custom.min.js",
        "background.js"
      ],
      "run_at": "document_end"
    }
  ],
  "permissions": [
    "activeTab",
    "https://*.force.com/*",
    "storage"
  ]
}