Display Netsuite record data in a useful UI.
Premium users can view and search full source code, and see the source code differences
between two versions.
Upgrade to premium
manifest.json
{
"update_url": "https://clients2.google.com/service/update2/crx",
"manifest_version": 3,
"name": "NetSuite Record Data",
"description": "Display Netsuite record data in a useful UI.",
"version": "2.1",
"icons": {
"16": "img/icon16.png",
"48": "img/icon48.png",
"128": "img/icon128.png"
},
"background": {
"service_worker": "js/netsuite_record_data_background.js",
"type": "module"
},
"action": {
"default_title": "NetSuite Record Data",
"default_popup": "index.html",
"default_icon": {
"16": "img/icon16.png",
"24": "img/icon24.png",
"32": "img/icon32.png"
}
},
"permissions": [
"declarativeContent",
"scripting",
"activeTab"
],
"web_accessible_resources": [
{
"resources": [
"js/netsuite_record_data_inject.js"
],
"matches": [
"<all_urls>"
]
}
]
}