NetSuite Record JSON Viewer

NetSuite Record JSON Viewer

This extension will stringify the current NetSuite record and display it

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 Record JSON Viewer",
  "description": "This extension will stringify the current NetSuite record and display it",
  "version": "1.2.2",
  "permissions": [
    "activeTab",
    "storage"
  ],
  "icons": {
    "16": "icons/16.png",
    "32": "icons/32.png",
    "48": "icons/48.png",
    "64": "icons/64.png",
    "128": "icons/128.png"
  },
  "background": {
    "scripts": [
      "js/background.js"
    ],
    "persistent": false
  },
  "browser_action": {
    "default_title": "Load NS Record",
    "default_icon": "icons/icon.png"
  },
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "js": [
        "js/content.js"
      ]
    }
  ]
}