Suitelook: NetSuite Record Viewer

This extension allows you to visualize all the fields of a record (light and dark mode)

Что такое Suitelook: NetSuite Record Viewer?

Suitelook: NetSuite Record Viewer - это расширение Chrome, разработанное Roberto Cideos, и его основная функция - "This extension allows you to visualize all the fields of a record (light and dark mode)".

Снимки экрана расширения

screenshot
screenshot

Скачать файл CRX расширения Suitelook: NetSuite Record Viewer

Скачайте файлы расширений Suitelook: NetSuite Record Viewer в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.

Инструкции по использованию расширения

                        This extension allows you to visualize all the fields of a netsuite record (choose between light and dark mode) while you are logged in and also see the content of either body and line fields values. It gives you a smooth look in a JSON view and allows you to navigate easily to search your data, you can also switch to a XML raw view. Also, you can filter the JSON either by key and/or value.                    

Основная информация о расширении

Название Suitelook: NetSuite Record Viewer Suitelook: NetSuite Record Viewer
ID enelhcfnkabehgjjcfliejjnmlnnmnei
Официальный URL https://chromewebstore.google.com/detail/suitelook-netsuite-record/enelhcfnkabehgjjcfliejjnmlnnmnei
Описание This extension allows you to visualize all the fields of a record (light and dark mode)
Размер файла 33.09 KB
Количество установок 685
Текущая Версия 1.0.10
Последнее Обновление 2023-01-11
Дата публикации 2022-03-28
Рейтинг 5.00/5 Всего 4 оценок
Разработчик Roberto Cideos
Электронная почта [email protected]
Тип оплаты free
Поддерживаемые языки en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Suitelook: NetSuite Record Viewer",
    "description": "This extension allows you to visualize all the fields of a record (light and dark mode)",
    "manifest_version": 3,
    "version": "1.0.10",
    "background": {
        "service_worker": "background.js"
    },
    "permissions": [
        "activeTab",
        "scripting",
        "declarativeContent",
        "commands"
    ],
    "action": {
        "default_popup": "suitelook.html"
    },
    "externally_connectable": {
        "matches": [
            "https:\/\/*.app.netsuite.com\/*"
        ]
    },
    "web_accessible_resources": [
        {
            "resources": [
                "js\/netscript.js"
            ],
            "matches": [
                ""
            ]
        }
    ],
    "icons": {
        "128": "assets\/Suitelook-Icon-01.png"
    }
}