NetSuite Scripted Records

NetSuite Scripted Records

See the customizations deployed to your records

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "NetSuite Scripted Records",
  "description": "See the customizations deployed to your records",
  "author": "Marcel Pestana <[email protected]>",
  "homepage_url": "https://marcelpestana.com",
  "version": "1.5",
  "icons": {
    "48": "img/icon48.png",
    "128": "img/icon128.png"
  },
  "background": {
    "scripts": [
      "js/background.js"
    ],
    "persistent": false
  },
  "page_action": {
    "default_title": "NetSuite Scripted Records",
    "default_popup": "popup.html",
    "default_icon": {
      "24": "img/icon24.png",
      "32": "img/icon32.png",
      "48": "img/icon48.png",
      "128": "img/icon128.png"
    }
  },
  "content_scripts": [
    {
      "matches": [
        "https://*.netsuite.com/app/*"
      ],
      "all_frames": false,
      "run_at": "document_end",
      "js": [
        "lib/jquery-1.11.2.min.js"
      ]
    }
  ],
  "permissions": [
    "activeTab",
    "declarativeContent",
    "https://*.netsuite.com/*"
  ],
  "web_accessible_resources": [
    "js/scriptrecordhelper.js"
  ]
}