Documents Automation for Nimble CRM

Documents Automation for Nimble CRM

Create, send and track quotes, proposals, contracts and other collateral from within Nimble CRM using PandaDoc extension!

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Documents Automation for Nimble CRM",
  "version": "1.6.2",
  "manifest_version": 3,
  "description": "Create, send and track quotes, proposals, contracts and other collateral from within Nimble CRM using PandaDoc extension!",
  "homepage_url": "https://www.pandadoc.com/",
  "icons": {
    "16": "icons/pd-16.png",
    "48": "icons/pd-48.png",
    "128": "icons/pd-128.png"
  },
  "permissions": [
    "storage"
  ],
  "host_permissions": [],
  "action": {
    "default_title": "PandaDoc",
    "default_icon": {
      "16": "icons/pd-16.png",
      "48": "icons/pd-48.png",
      "128": "icons/pd-128.png"
    },
    "default_popup": "popup.html"
  },
  "background": {
    "service_worker": "js/background/background.js",
    "type": "module"
  },
  "content_scripts": [
    {
      "matches": [
        "https://app.nimble.com/*"
      ],
      "js": [
        "libs/moment.min.js",
        "libs/moment-timezone-with-data.js",
        "libs/jquery.js",
        "libs/purl.js",
        "libs/jquery.cookie.js",
        "libs/jquery.noty.packaged.js",
        "libs/lodash.js",
        "libs/parse-names.js",
        "libs/raven.min.js",
        "libs/pd_js_sdk/pandadoc-js-sdk.min.js",
        "js/extend/parse-names-custom.js",
        "js/content_scripts/extension.js",
        "js/content_scripts/panel.js",
        "js/content_scripts/init.js",
        "js/content_scripts/providers/nimble.js"
      ],
      "css": [
        "libs/pd_js_sdk/pandadoc-js-sdk.css",
        "css/inject.css"
      ],
      "run_at": "document_end"
    }
  ],
  "options_ui": {
    "page": "options.html"
  }
}