NetSuite Record JSON Viewer

This extension will stringify the current NetSuite record and display it

¿Qué es NetSuite Record JSON Viewer?

NetSuite Record JSON Viewer es una extensión de Chrome desarrollada por Kraft Enterprise Systems, y su función principal es "This extension will stringify the current NetSuite record and display it".

Capturas de Pantalla de la Extensión

screenshot
screenshot

Descargar Archivo CRX de la Extensión NetSuite Record JSON Viewer

Descarga archivos de extensión NetSuite Record JSON Viewer en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.

Instrucciones de Uso de la Extensión

                        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.                    

Información Básica de la Extensión

Nombre NetSuite Record JSON Viewer NetSuite Record JSON Viewer
ID ibkdphopcbimokejnhhgelcancfabhba
URL Oficial https://chromewebstore.google.com/detail/netsuite-record-json-view/ibkdphopcbimokejnhhgelcancfabhba
Descripción This extension will stringify the current NetSuite record and display it
Tamaño del Archivo 58.99 KB
Cantidad de Instalaciones 3,961
Versión Actual 1.2.2
Última Actualización 2023-08-23
Fecha de Publicación 2018-08-16
Calificación 4.43/5 Total de 7 Calificaciones
Desarrollador Kraft Enterprise Systems
Correo electrónico [email protected]
Tipo de Pago free
Sitio Web de la Extensión http://kraftenterprise.com/
Idiomas Soportados 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"
            ]
        }
    ]
}