NetSuite Record JSON Viewer

This extension will stringify the current NetSuite record and display it

Was ist NetSuite Record JSON Viewer?

NetSuite Record JSON Viewer ist eine Chrome-Erweiterung, die von Kraft Enterprise Systems entwickelt wurde, und ihr Hauptmerkmal ist "This extension will stringify the current NetSuite record and display it".

Erweiterungsscreenshots

screenshot
screenshot

NetSuite Record JSON Viewer-Erweiterungs-CRX-Datei herunterladen

Laden Sie NetSuite Record JSON Viewer-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        Allows you to view a record in NetSuite and view it as a JSON object. Only works on scriptable records. Some records are not exposed by the API. If the API doesn't return the Record Type or ID, a prompt will be displayed to enter the value.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.                    

Grundlegende Informationen zur Erweiterung

Name NetSuite Record JSON Viewer NetSuite Record JSON Viewer
ID ibkdphopcbimokejnhhgelcancfabhba
Offizielle URL https://chromewebstore.google.com/detail/netsuite-record-json-view/ibkdphopcbimokejnhhgelcancfabhba
Beschreibung This extension will stringify the current NetSuite record and display it
Dateigröße 58.99 KB
Installationsanzahl 3,961
Aktuelle Version 1.2.2
Letztes Update 2023-08-23
Veröffentlichungsdatum 2018-08-16
Bewertung 4.43/5 Insgesamt 7 Bewertungen
Entwickler Kraft Enterprise Systems
E-Mail [email protected]
Zahlungsart free
Erweiterungswebsite http://kraftenterprise.com/
Unterstützte Sprachen en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "NetSuite Record JSON Viewer",
    "description": "This extension will stringify the current NetSuite record and display it",
    "version": "1.2.2",
    "permissions": [
        "activeTab",
        "storage"
    ],
    "icons": {
        "16": "icons\/16.png",
        "32": "icons\/32.png",
        "48": "icons\/48.png",
        "64": "icons\/64.png",
        "128": "icons\/128.png"
    },
    "background": {
        "scripts": [
            "js\/background.js"
        ],
        "persistent": false
    },
    "browser_action": {
        "default_title": "Load NS Record",
        "default_icon": "icons\/icon.png"
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "js\/content.js"
            ]
        }
    ]
}