Guidejar

Create product demos with just a few clicks - literally.

Guidejar란 무엇입니까?

Guidejar은(는) https://guidejar.com에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Create product demos with just a few clicks - literally."입니다.

확장 프로그램 스크린샷

screenshot
screenshot

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

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

확장 프로그램 사용 설명서

                        Welcome to Guidejar - Your Ultimate Solution for Creating Interactive Demos and Guides Effortlessly.

Create Interactive Product Demos in Minutes, No More Video Editing Hassles. Dazzle Your Audience and Drive Action.

Why Spend Countless Hours Editing Demo Videos? With Guidejar, You're in Control. Auto-Generate Step-by-Step Guides with a Click, Transforming Any Process into a Captivating Journey.

Embedding Interactive Demos Directly on Your Website Or Enhancing Support Docs with Dynamic Elements, Guidejar Makes It Happen.

How Does It Work? 

1. Activate our extension and seamlessly navigate through any process.
2. Enhance your guides using features like click targets, redactions, autoplay, and  CTAs.
3. Share via links or embed within support resources, onboarding materials, websites, or even Notion pages.

From Onboarding New Employees to Documenting Bugs Step-by-Step, Guidejar's Got You Covered.

Unleash Guidejar's Magic Now. Transform Your Process into an Immersive Experience. Craft Step-by-Step Guides that Truly Speak to Your Audience.                    

확장 프로그램 기본 정보

이름 Guidejar Guidejar
ID nljfdifffnfijpidnjfbibbdeipnnlln
공식 URL https://chromewebstore.google.com/detail/guidejar/nljfdifffnfijpidnjfbibbdeipnnlln
설명 Create product demos with just a few clicks - literally.
파일 크기 20.54 MB
설치 횟수 1,334
현재 버전 0.1.3
최근 업데이트 2023-12-04
출시 날짜 2023-09-06
평점 5.00/5 총 2 개의 평점
개발자 https://guidejar.com
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://www.guidejar.com/
도움말 페이지 URL https://www.guidejar.com/contact
개인정보 보호 정책 페이지 URL https://www.guidejar.com/privacy
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Guidejar",
    "version": "0.1.3",
    "description": "Create product demos with just a few clicks - literally.",
    "icons": {
        "16": "icons\/icon_16.png",
        "32": "icons\/icon_32.png",
        "48": "icons\/icon_48.png",
        "128": "icons\/icon_128.png"
    },
    "externally_connectable": {
        "matches": [
            "*:\/\/*.guidejar.com\/*"
        ]
    },
    "background": {
        "service_worker": "background.js"
    },
    "action": {
        "default_title": "Guidejar"
    },
    "web_accessible_resources": [
        {
            "resources": [
                "global.css",
                "fonts.css",
                "icons\/*",
                "images\/*",
                "fonts\/*"
            ],
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ]
        }
    ],
    "permissions": [
        "storage",
        "tabs",
        "activeTab",
        "scripting"
    ],
    "host_permissions": [
        ""
    ],
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "run_at": "document_idle",
            "js": [
                "contentScript.js"
            ],
            "all_frames": true
        }
    ]
}