NetSuite Field Explorer

NetSuite Field Explorer

Examine the fields in a Netsuite record

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 Field Explorer",
  "description": "Examine the fields in a Netsuite record",
  "author": "Michoel Chaikin <[email protected]>",
  "homepage_url": "https://github.com/michoelchaikin/netsuite-field-explorer",
  "version": "0.0.11",
  "icons": {
    "16": "img/icon16.png",
    "48": "img/icon48.png",
    "128": "img/icon128.png"
  },
  "background": {
    "scripts": [
      "js/background.js"
    ],
    "persistent": false
  },
  "page_action": {
    "default_title": "NetSuite Field Explorer",
    "default_popup": "popup.html",
    "default_icon": {
      "16": "img/icon16.png",
      "24": "img/icon24.png",
      "32": "img/icon32.png"
    }
  },
  "commands": {
    "_execute_page_action": {
      "suggested_key": {
        "default": "Ctrl+Shift+E"
      }
    }
  },
  "permissions": [
    "activeTab",
    "declarativeContent"
  ],
  "web_accessible_resources": [
    "js/inject.js"
  ]
}