Dynamics 365 Power Pane

The CRM Power Pane is a helper tool designed to integrate with Microsoft Dynamics CRM application and allow you to manipulate forms.
Premium users can view and search full source code, and see the source code differences between two versions.
Upgrade to premium
manifest.json
{
  "manifest_version": 2,
  "name": "Dynamics 365 Power Pane",
  "short_name": "Dynamics 365 Power Pane",
  "version": "1.2.2",
  "description": "Dynamics 365 Power Pane is a helper tool designed to integrate with Dynamics CRM/365 application and allow you to manipulate forms.",
  "content_security_policy": "script-src 'self'; object-src 'self'",
  "browser_action": {
    "default_title": "Dynamics 365 Power Pane",
    "default_icon": {
      "32": "img/icon-32.png"
    }
  },
  "icons": {
    "32": "img/icon-32.png",
    "48": "img/icon-48.png",
    "64": "img/icon-64.png",
    "128": "img/icon-128.png"
  },
  "content_scripts": [
    {
      "run_at": "document_end",
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "js/inject.js"
      ],
      "css": [
        "ui/css/pane.css"
      ]
    }
  ],
  "permissions": [
    "identity",
    "tabs",
    "activeTab",
    "storage",
    "http://*/*",
    "https://*/*"
  ],
  "web_accessible_resources": [
    "ui/*",
    "img/*"
  ],
  "background": {
    "scripts": [
      "js/background.js"
    ],
    "persistent": false
  },
  "options_ui": {
    "page": "ui/options.html",
    "browser_style": true
  }
}