Headless Recorder

A Chrome extension for recording browser interaction and generating Puppeteer & Playwright scripts

Headless Recorder란 무엇입니까?

Headless Recorder은(는) http://checklyhq.com에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "A Chrome extension for recording browser interaction and generating Puppeteer & Playwright scripts"입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot
screenshot
screenshot
screenshot

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

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

확장 프로그램 사용 설명서

                        Headless Recorder is a popular open-source Chrome extension to easily generate Playwright/Puppeteer scripts without coding 🚀

The free extension makes writing Playwright/Puppeteer scripts way easier. It records your browser interactions and auto-generates the code. This is super useful for creating: 

👉  E2E test scripts
👉  Web scraping scripts
👉  Synthetic monitoring scripts

Headless Recorder features:
- Record clicks, input events, etc.
- Record screenshots.
- Pause the recording when navigating.
- Identify elements from the overlay.
- Monitor recorded events.
- Export to Puppeteer code or to [Checkly](https://www.checklyhq.com/)
- Tweak the settings of the generated code.
- Light and dark mode

How to use it:
- Click the icon and hit Record.
- Hit TAB after you finish typing in an input element.
- Click links, inputs and other elements.
- Wait for full page load on each navigation.
- Click Pause when you want to navigate without recording anything. Hit Resume to continue recording.

This extension is actively developed. More events and actions will be added in later versions.
check https://checklyhq.com/headless-recorder/. If you have feedback and/or want to contribute have a look at https://github.com/checkly/headless-recorder.                    

확장 프로그램 기본 정보

이름 Headless Recorder Headless Recorder
ID djeegiggegleadkkbgopoonhjimgehda
공식 URL https://chrome.google.com/webstore/detail/headless-recorder/djeegiggegleadkkbgopoonhjimgehda
설명 A Chrome extension for recording browser interaction and generating Puppeteer & Playwright scripts
파일 크기 1.79 MB
설치 횟수 31,019
현재 버전 1.1.0
최근 업데이트 2021-08-25
출시 날짜 2020-06-11
평점 4.28/5 총 40 개의 평점
개발자 http://checklyhq.com
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://checklyhq.com/headless-recorder
도움말 페이지 URL https://github.com/checkly/headless-recorder
개인정보 보호 정책 페이지 URL https://github.com/checkly/headless-recorder/blob/master/PRIVACY_POLICY.md
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Headless Recorder",
    "version": "1.1.0",
    "manifest_version": 2,
    "description": "A Chrome extension for recording browser interaction and generating Puppeteer & Playwright scripts",
    "default_locale": "en",
    "permissions": [
        "storage",
        "webNavigation",
        "activeTab",
        "cookies",
        "*:\/\/*\/"
    ],
    "icons": {
        "16": "icons\/16.png",
        "48": "icons\/48.png",
        "128": "icons\/128.png"
    },
    "content_security_policy": "script-src 'self' ; object-src 'self'",
    "background": {
        "scripts": [
            "js\/background.js"
        ],
        "persistent": false
    },
    "browser_action": {
        "default_popup": "popup.html",
        "default_title": "__MSG_extName__",
        "default_icon": {
            "19": "icons\/19.png",
            "38": "icons\/38.png"
        }
    },
    "options_ui": {
        "page": "options.html",
        "browser_style": true,
        "open_in_tab": true
    },
    "web_accessible_resources": [
        "icons\/dark\/play.svg",
        "icons\/light\/play.svg",
        "icons\/dark\/pause.svg",
        "icons\/light\/pause.svg",
        "icons\/dark\/screen.svg",
        "icons\/light\/screen.svg",
        "icons\/dark\/clip.svg",
        "icons\/light\/clip.svg",
        "icons\/dark\/sync.svg",
        "icons\/light\/sync.svg",
        "icons\/dark\/duplicate.svg",
        "icons\/light\/duplicate.svg"
    ]
}