Trainual Capture

Automatically document your business processes right as you do them with easy-to-follow, step-by-step instructions with screenshots.

Trainual Capture란 무엇입니까?

Trainual Capture은(는) Trainual에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Automatically document your business processes right as you do them with easy-to-follow, step-by-step instructions with screenshots."입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot
screenshot

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

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

확장 프로그램 사용 설명서

                        The Trainual Capture Chrome extension automatically documents your business processes right as you do them, creating easy-to-follow, step-by-step instructions (pictures included). Plus, easily store the how-to manuals you create with all your other trainings, policies, and processes. 

Join thousands of small businesses to level up the way you: onboard and train, document and delegate, systemize and scale. With Trainual, it’s easier than ever to train new hires twice as fast, hold your team accountable for following policies and processes, and keep everyone up to speed as your org grows and changes.                    

확장 프로그램 기본 정보

이름 Trainual Capture Trainual Capture
ID chlniokcikogjciaofjgkhbmgjhdckji
공식 URL https://chromewebstore.google.com/detail/trainual-capture/chlniokcikogjciaofjgkhbmgjhdckji
설명 Automatically document your business processes right as you do them with easy-to-follow, step-by-step instructions with screenshots.
파일 크기 211 KB
설치 횟수 2,318
현재 버전 1.7.0.20
최근 업데이트 2023-08-29
출시 날짜 2022-09-19
평점 5.00/5 총 2 개의 평점
개발자 Trainual
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://trainual.com/capture
도움말 페이지 URL https://help.trainual.com/en/articles/6542386-trainual-capture-chrome-extension
개인정보 보호 정책 페이지 URL https://trainual.com/privacy
지원되는 언어 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Trainual Capture",
    "description": "Automatically document your business processes right as you do them with easy-to-follow, step-by-step instructions with screenshots.",
    "version": "1.7.0.20",
    "action": {
        "default_popup": "popup.html",
        "default_icon": {
            "16": "images\/logo-16.png",
            "48": "images\/logo-48.png",
            "128": "images\/logo-128.png"
        }
    },
    "icons": {
        "16": "images\/logo-16.png",
        "48": "images\/logo-48.png",
        "128": "images\/logo-128.png"
    },
    "background": {
        "service_worker": "background-wrapper.js"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "all_frames": true,
            "js": [
                "libs\/jquery-2.0.3.min.js",
                "config.js",
                "templates\/templates.js"
            ],
            "run_at": "document_end"
        }
    ],
    "host_permissions": [
        "",
        "*:\/\/app.trainual-dev.com\/*",
        "*:\/\/.app.trainual-dev.com\/*",
        "*:\/\/app.trainual.com\/*",
        "*:\/\/.app.trainual.com\/*",
        "*:\/\/*\/*",
        "chrome-extension:\/\/*\/"
    ],
    "permissions": [
        "tabs",
        "storage",
        "unlimitedStorage",
        "scripting",
        "cookies"
    ],
    "content_security_policy": {
        "extension_pages": "script-src 'self'; object-src 'self'"
    },
    "web_accessible_resources": [
        {
            "resources": [
                "pages\/user-dashboard.html",
                "scripts\/add-controls.js"
            ],
            "matches": [
                "*:\/\/*\/*"
            ]
        }
    ]
}