JumpSeat

The enterprise on-screen guidance platform.

Что такое JumpSeat?

JumpSeat - это расширение Chrome, разработанное https://jumpseat.io, и его основная функция - "The enterprise on-screen guidance platform.".

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

screenshot

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

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

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

                        JumpSeat reduces onboarding times, improves training, and eases support by delivering on-screen guidance over your existing enterprise applications.                    

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

Название JumpSeat JumpSeat
ID ndlpojioljoiacimlfdeiedhcpjjdiga
Официальный URL https://chromewebstore.google.com/detail/jumpseat/ndlpojioljoiacimlfdeiedhcpjjdiga
Описание The enterprise on-screen guidance platform.
Размер файла 1.4 MB
Количество установок 48,234
Текущая Версия 6.0.5
Последнее Обновление 2024-01-04
Дата публикации 2020-07-01
Рейтинг 5.00/5 Всего 3 оценок
Разработчик https://jumpseat.io
Электронная почта [email protected]
Тип оплаты free
URL страницы помощи https://support.jumpseat.io
URL страницы политики конфиденциальности https://jumpseat.io/privacy
Поддерживаемые языки en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "JumpSeat",
    "version": "6.0.5",
    "manifest_version": 3,
    "author": "JumpSeat, LLC",
    "description": "The enterprise on-screen guidance platform.",
    "action": {
        "browser_style": true,
        "default_title": "JumpSeat",
        "theme_icons": [
            {
                "light": "icons\/icon48.png",
                "dark": "icons\/icon48.png",
                "size": 48
            },
            {
                "light": "icons\/icon32.png",
                "dark": "icons\/icon32.png",
                "size": 32
            },
            {
                "light": "icons\/icon20.png",
                "dark": "icons\/icon20.png",
                "size": 20
            },
            {
                "light": "icons\/icon16.png",
                "dark": "icons\/icon16.png",
                "size": 16
            }
        ],
        "default_popup": "popup.html"
    },
    "icons": {
        "128": "icons\/icon128.png",
        "48": "icons\/icon48.png",
        "32": "icons\/icon32.png",
        "16": "icons\/icon16.png"
    },
    "permissions": [
        "storage"
    ],
    "host_permissions": [
        "https:\/\/*\/*"
    ],
    "storage": {
        "managed_schema": "managed.json"
    },
    "background": {
        "service_worker": "background.js"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*\/*"
            ],
            "match_about_blank": true,
            "all_frames": true,
            "run_at": "document_end",
            "js": [
                "jumpseat-extension.js"
            ],
            "css": [
                "css\/console.css"
            ]
        }
    ],
    "content_security_policy": {
        "script-src": "none",
        "object-src": "none"
    }
}