NetSuite Fixed Sublist Headers

NetSuite Fixed Sublist Headers

Fixes all sublist headers so that they are still visible while scrolling

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "author": "Kayla Kuhlman",
  "manifest_version": 2,
  "name": "NetSuite Fixed Sublist Headers",
  "description": "Fixes all sublist headers so that they are still visible while scrolling",
  "version": "1.0",
  "content_scripts": [
    {
      "js": [
        "lib/jquery.min.js",
        "content.js"
      ],
      "matches": [
        "*://*.app.netsuite.com/*"
      ],
      "run_at": "document_start"
    }
  ],
  "icons": {
    "128": "icon.png"
  },
  "permissions": [
    "https://*.netsuite.com/*"
  ]
}