Netsuite Bundles to Update

Detect the error logs in your NetSuite Production Account and be notified on bundle updates.

Что такое Netsuite Bundles to Update?

Netsuite Bundles to Update - это расширение Chrome, разработанное https://suitedb.com, и его основная функция - "Detect the error logs in your NetSuite Production Account and be notified on bundle updates.".

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

screenshot
screenshot

Скачать файл CRX расширения Netsuite Bundles to Update

Скачайте файлы расширений Netsuite Bundles to Update в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.

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

                        Detect the error logs in your NetSuite Production Account and be notified on bundle updates.                    

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

Название Netsuite Bundles to Update Netsuite Bundles to Update
ID gadlmaaioijphjjccgfeoaaldnkemgod
Официальный URL https://chrome.google.com/webstore/detail/netsuite-bundles-to-updat/gadlmaaioijphjjccgfeoaaldnkemgod
Описание Detect the error logs in your NetSuite Production Account and be notified on bundle updates.
Размер файла 86.53 KB
Количество установок 154
Текущая Версия 1.1
Последнее Обновление 2019-08-01
Дата публикации 2019-08-01
Рейтинг 5.00/5 Всего 1 оценок
Разработчик https://suitedb.com
Электронная почта [email protected]
Тип оплаты free
Официальный сайт расширения https://suitedb.com
Поддерживаемые языки en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Netsuite Bundles to Update",
    "version": "1.1",
    "manifest_version": 2,
    "description": "",
    "icons": {
        "128": "sunit-test2.png"
    },
    "browser_action": {
        "default_title": "SuiteDB logs & Bundle Info",
        "default_popup": "Popup.html"
    },
    "permissions": [
        "https:\/\/*.app.netsuite.com\/*",
        "contentSettings"
    ],
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*.app.netsuite.com\/*"
            ],
            "js": [
                "contentScript.js"
            ]
        }
    ],
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "web_accessible_resources": [
        "pageScript.js"
    ]
}