Netsuite Search Results To JSON

Netsuite Search Results To JSON

Download a JSON file from a Netsuite Search from Saved Search

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Netsuite Search Results To JSON",
  "description": "Download a JSON file from a Netsuite Search from Saved Search",
  "version": "1.1",
  "manifest_version": 3,
  "permissions": [],
  "content_scripts": [
    {
      "js": [
        "src/index.js"
      ],
      "matches": [
        "https://*.netsuite.com/app/common/search/searchresults.nl?*searchid=*"
      ]
    }
  ],
  "icons": {
    "16": "/images/toJSON-16.png",
    "32": "/images/toJSON-32.png",
    "48": "/images/toJSON-48.png",
    "128": "/images/toJSON-128.png"
  }
}