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 द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "This extension will stringify the current NetSuite record and display it"।

एक्सटेंशन स्क्रीनशॉट्स

screenshot
screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में NetSuite Record JSON Viewer एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ 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"
            ]
        }
    ]
}