Data is synced from the Chrome Web Store. View the official store page for the most current information.
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "BugFlow", "version": "1.2.8", "description": "Record user actions on web pages for automation and testing", "permissions": [ "activeTab", "storage", "scripting", "webNavigation", "tabCapture", "downloads", "debugger" ], "host_permissions": [ "<all_urls>", "https:\/\/gemini-api-indol.vercel.app\/*" ], "background": { "service_worker": "background.js" }, "content_scripts": [ { "matches": [ "<all_urls>" ], "js": [ "content.js" ], "run_at": "document_end" } ], "icons": { "16": "icon.png", "48": "icon.png", "128": "icon.png" }, "web_accessible_resources": [ { "resources": [ "inject.js" ], "matches": [ "<all_urls>" ] } ], "action": { "default_popup": "popup.html", "default_title": "BugFlow - Debug and automate with ease" } }