UserGuiding - Better User Onboarding

Build UserGuiding guides on any website.

UserGuiding - Better User Onboarding란 무엇입니까?

UserGuiding - Better User Onboarding은(는) https://userguiding.com에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Build UserGuiding guides on any website."입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot
screenshot
screenshot

UserGuiding - Better User Onboarding 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        Guide your users on your website with UserGuiding. 🌊

In a matter of minutes, you can:

✅ Design interactive guides, product tours, and walkthroughs for quick and effective onboarding,
✅ Create hotspots and tooltips to announce updates without user frustration,
✅ Collect all help resources in a resource center for self-serve customer support,
✅ Customize all features of your guide from colors to triggers via a user-friendly dashboard,
✅ Create user segments and use targetting for a tailored experience for each user,
✅ Analyze your guides and onboarding with a powerful analytics dashboard,
✅ Create new users with different authorization levels in order to work more productively

Do it all without writing a single line of code, with ease, wherever you want 💪                    

확장 프로그램 기본 정보

이름 UserGuiding - Better User Onboarding UserGuiding - Better User Onboarding
ID bejnkpeokbmilompefleppmlblpblbok
공식 URL https://chromewebstore.google.com/detail/userguiding-better-user-o/bejnkpeokbmilompefleppmlblpblbok
설명 Build UserGuiding guides on any website.
파일 크기 6.94 MB
설치 횟수 10,000
현재 버전 5.1.4.1
최근 업데이트 2024-02-23
출시 날짜 2020-07-03
평점 5.00/5 총 22 개의 평점
개발자 https://userguiding.com
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://userguiding.com
도움말 페이지 URL https://userguiding.com
개인정보 보호 정책 페이지 URL https://userguiding.com/privacy-policy
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "__MSG_appName__",
    "short_name": "__MSG_appShortName__",
    "version": "5.1.4.1",
    "manifest_version": 2,
    "description": "__MSG_appDescription__",
    "homepage_url": "https:\/\/userguiding.com",
    "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'",
    "default_locale": "en",
    "browser_action": {
        "default_title": "__MSG_appName__"
    },
    "icons": {
        "16": "icons\/icon16.png",
        "48": "icons\/icon48.png",
        "128": "icons\/icon128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "app.bundle.js"
            ],
            "all_frames": false,
            "run_at": "document_idle"
        }
    ],
    "externally_connectable": {
        "matches": [
            "*:\/\/*.userguiding.com\/*",
            "http:\/\/localhost\/*"
        ]
    },
    "permissions": [
        "webNavigation",
        "storage",
        "contextMenus",
        "tabs"
    ],
    "background": {
        "scripts": [
            "background.bundle.js"
        ],
        "persistent": true
    },
    "web_accessible_resources": [
        "bundle.css",
        "fonts.css",
        "non-shadow.css",
        "icons\/*",
        "fonts\/*",
        "steptypes\/*",
        "logo\/*",
        "templates\/*",
        "emptystate\/*"
    ]
}