abx-spec-behaviors icon indicating copy to clipboard operation
abx-spec-behaviors copied to clipboard

🧩 Proposal to allow user scripts like "expand comments", "hide popups", "fill out this form", etc. to be reusable across pure browser environments, puppeteer, playwright, extensions, AI tools, and ma...

Results 3 abx-spec-behaviors issues
Sort by recently updated
recently updated
newest added

https://www.checklyhq.com/learn/playwright/how-to-parameterize-playwright-projects/

Overall, I find the idea interesting! For my part, I think I could implement a `CDPCrawlDriver` class (using the Chrome Devtools Protocol under the hood) in single-file-cli. Now, let's imagine...

```javascript // manifest.json { "manifest_version": 3, "name": "Behavior Extension", "version": "1.0", "permissions": [ "tabs", "activeTab", "storage", "debugger", "webNavigation", "webRequest", "scripting" ], "host_permissions": [ "" ], "background": { "service_worker": "background.js", "type":...