NetSuite Record JSON Viewer

This extension will stringify the current NetSuite record and display it

什么是NetSuite Record JSON Viewer?

NetSuite Record JSON Viewer是由Kraft Enterprise Systems开发的Chrome扩展程序,该扩展的主要功能是“This extension will stringify the current NetSuite record and display it”。

扩展截图

screenshot
screenshot

下载NetSuite Record JSON Viewer扩展crx文件

下载NetSuite Record JSON Viewer扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        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.                    

扩展基本信息

名称 NetSuite Record JSON Viewer NetSuite Record JSON Viewer
ID ibkdphopcbimokejnhhgelcancfabhba
官方URL https://chromewebstore.google.com/detail/netsuite-record-json-view/ibkdphopcbimokejnhhgelcancfabhba
简介 This extension will stringify the current NetSuite record and display it
文件大小 58.99 KB
安装次数 3,961
当前版本 1.2.2
更新时间 2023-08-23
上架时间 2018-08-16
评分 4.43/5 共7次评分
开发者 Kraft Enterprise Systems
电子邮箱 [email protected]
付费类型 free
扩展官网 http://kraftenterprise.com/
支持的语言 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"
            ]
        }
    ]
}