NetSuite Chatbot

NetSuite Chatbot

This Chatbot for NetSuite is intended to improve the NetSuite Global Search functionalities. It allows, for example, to find a…

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "NetSuite Chatbot",
  "description": "",
  "author": "Marcel Pestana <[email protected]>",
  "homepage_url": "https://marcelpestana.com",
  "version": "1.1",
  "icons": {
    "128": "img/icon128.png"
  },
  "background": {
    "service_worker": "js/background.js"
  },
  "action": {
    "default_title": "NetSuite ChatBot",
    "default_popup": "popup.html",
    "default_icon": {
      "128": "img/icon128.png"
    }
  },
  "content_scripts": [
    {
      "matches": [
        "https://*.netsuite.com/app/*"
      ],
      "all_frames": false,
      "run_at": "document_start",
      "js": [
        "lib/jquery-1.11.2.min.js",
        "lib/underscore-min.js",
        "lib/recordtypes.js"
      ]
    }
  ],
  "permissions": [
    "activeTab",
    "declarativeContent",
    "scripting"
  ],
  "host_permissions": [
    "https://*.netsuite.com/*"
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "js/chatbothelper.js",
        "lib/underscore-min.js",
        "lib/recordtypes.js"
      ],
      "matches": [
        "https://*.netsuite.com/*"
      ]
    }
  ]
}