Onlysales

Onlysales

The OnlySales extension allows you to link your account, with other CRM's - and be able to port leads over to follow up with inside…

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Onlysales",
  "version": "3.0.6",
  "author": "Neil Patrick Lacson",
  "description": "",
  "action": {
    "default_popup": "html/popup.html",
    "default_icon": {
      "16": "icons/16.png",
      "32": "icons/16.png",
      "48": "icons/16.png",
      "128": "icons/16.png"
    }
  },
  "content_scripts": [
    {
      "matches": [
        "https://*.vanillasoft.net/*"
      ],
      "js": [
        "src/vanillasoft.js"
      ]
    },
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "js/jquery.min.js",
        "js/moment.js",
        "src/integrations.js"
      ]
    }
  ],
  "permissions": [
    "storage"
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "src/*"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ],
  "icons": {
    "16": "./icons/16.png",
    "32": "./icons/16.png",
    "48": "./icons/16.png",
    "128": "./icons/16.png"
  }
}