NetSuite Keyboard Shortcuts

NetSuite Keyboard Shortcuts

Что такое NetSuite Keyboard Shortcuts?

NetSuite Keyboard Shortcuts - это расширение Chrome, разработанное Milcho Dimkov, и его основная функция - "NetSuite Keyboard Shortcuts".

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

screenshot
screenshot

Скачать файл CRX расширения NetSuite Keyboard Shortcuts

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

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

                        This Chrome extension allows NetSuite users to use keyboard shortcuts to access frequently used pages by typing a combination of keys (with or without special keys). There are more than 60 preset keyboard shortcuts and custom ones can be added as well. Check the video and the documentation for details.                    

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

Название NetSuite Keyboard Shortcuts NetSuite Keyboard Shortcuts
ID dgfhjidfjpggcejapjbpadkngnbefdla
Официальный URL https://chromewebstore.google.com/detail/netsuite-keyboard-shortcu/dgfhjidfjpggcejapjbpadkngnbefdla
Описание NetSuite Keyboard Shortcuts
Размер файла 2.73 MB
Количество установок 1,363
Текущая Версия 1.1
Последнее Обновление 2021-01-15
Дата публикации 2021-01-10
Рейтинг 5.00/5 Всего 16 оценок
Разработчик Milcho Dimkov
Электронная почта [email protected]
Тип оплаты free
Официальный сайт расширения https://www.travizer.com/netsuite-keyboard-shortcuts.html
URL страницы помощи https://www.travizer.com/netsuite-keyboard-shortcuts.html
Поддерживаемые языки en
manifest.json
{
    "background": {
        "scripts": [
            "scripts\/background.js"
        ]
    },
    "commands": {
        "toggle-feature-foo": {
            "suggested_key": {
                "default": "Ctrl+Shift+Y",
                "mac": "Command+Shift+Y"
            },
            "description": "Open options page"
        }
    },
    "content_scripts": [
        {
            "all_frames": false,
            "js": [
                "scripts\/content.js"
            ],
            "matches": [
                "https:\/\/*.app.netsuite.com\/*"
            ],
            "run_at": "document_end"
        }
    ],
    "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'",
    "default_locale": "en",
    "description": "__MSG_appDescription__",
    "icons": {
        "128": "images\/icon-128.png",
        "16": "images\/icon-16.png",
        "48": "images\/icon-48.png"
    },
    "manifest_version": 2,
    "name": "__MSG_appName__",
    "options_page": "options\/options.html",
    "short_name": "__MSG_appShortName__",
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "version": "1.1"
}