NetSuite Copy Field Internal IDs

NetSuite Copy Field Internal IDs

Shift+Click the Field Label to Quickly Copy the Field Internal ID

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "NetSuite Copy Field Internal IDs",
  "manifest_version": 3,
  "version": "2.2.0",
  "description": "Shift+Click the Field Label to Quickly Copy the Field Internal ID",
  "author": "James Pak",
  "action": {
    "default_popup": "popup.html",
    "default_title": "NetSuite Copy Field Internal IDs",
    "default_icon": "images/nsdfii_logo_64x64.png"
  },
  "icons": {
    "16": "images/nsdfii_logo_16x16.png",
    "32": "images/nsdfii_logo_32x32.png",
    "64": "images/nsdfii_logo_64x64.png",
    "128": "images/nsdfii_logo_128x128.png",
    "256": "images/nsdfii_logo_256x256.png"
  },
  "content_scripts": [
    {
      "js": [
        "scripts/content.js"
      ],
      "matches": [
        "https://*.netsuite.com/app/*"
      ]
    }
  ]
}