Ohana Developer Console

Ohana Developer Console

Salesforce Developer Console Customizer

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "__MSG_extName__",
  "version": "0.0.6",
  "manifest_version": 2,
  "description": "__MSG_extDescription__",
  "default_locale": "ja",
  "icons": {
    "16": "icons/icon16.png",
    "48": "icons/icon48.png",
    "96": "icons/icon96.png",
    "128": "icons/icon128.png"
  },
  "browser_action": {
    "default_icon": "icons/icon128.png"
  },
  "content_scripts": [
    {
      "matches": [
        "https://*.salesforce.com/_ui/common/apex/debug/ApexCSIPage"
      ],
      "run_at": "document_end",
      "js": [
        "lib/jquery.js",
        "lib/jquery-ui.min.js",
        "contentscript.js"
      ],
      "css": [
        "css/main.css"
      ]
    }
  ],
  "options_ui": {
    "page": "options.html",
    "chrome_style": true
  },
  "permissions": [
    "storage",
    "fontSettings"
  ]
}