Plugin to quickly create a work record.

Plugin to quickly create a work record.

Plugin to quickly create a work record.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Plugin to quickly create a work record.",
  "version": "0.0.4",
  "manifest_version": 2,
  "description": "Plugin to quickly create a work record.",
  "options_page": "options.html",
  "short_name": "AAQ",
  "browser_action": {
    "default_title": "Plugin to quickly create a work record.",
    "default_popup": "launcher.html"
  },
  "icons": {
    "128": "work_icon.png"
  },
  "content_scripts": [
    {
      "matches": [
        "https://*.salesforce.com/*"
      ],
      "js": [
        "jquery-1.11.3.js",
        "launcher.js"
      ],
      "run_at": "document_start"
    }
  ],
  "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'",
  "permissions": [
    "storage",
    "webRequest",
    "tabCapture",
    "activeTab",
    "pageCapture",
    "cookies",
    "notifications",
    "tabs",
    "http://*.salesforce.com/*",
    "https://*.salesforce.com/*"
  ]
}