Headless Recorder
A Chrome extension for recording browser interaction and generating Puppeteer & Playwright scripts
Headless Recorder क्या है?
Headless Recorder http://checklyhq.com द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "A Chrome extension for recording browser interaction and generating Puppeteer & Playwright scripts"।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Headless Recorder एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ 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.
एक्सटेंशन की मूल जानकारी
नाम | |
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" ] } |