JumpSeat

The enterprise on-screen guidance platform.

JumpSeat란 무엇입니까?

JumpSeat은(는) https://jumpseat.io에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "The enterprise on-screen guidance platform."입니다.

확장 프로그램 스크린샷

screenshot

JumpSeat 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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"
    }
}