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 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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"
            ]
        }
    ]
}