Go to Customer Button for QuickBooks Online

Go to Customer Button for QuickBooks Online

This extension adds a button to the invoice screen

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Go to Customer Button for QuickBooks Online",
  "description": "This extension adds a button to the invoice screen",
  "version": "1.0.1",
  "browser_action": {
    "default_icon": "icon.png"
  },
  "content_scripts": [
    {
      "matches": [
        "*://*.qbo.intuit.com/*"
      ],
      "js": [
        "content.js"
      ],
      "run_at": "document_end",
      "all_frames": true
    }
  ],
  "permissions": [
    "activeTab",
    "http://*.qbo.intuit.com/*",
    "https://*.qbo.intuit.com/*"
  ]
}