Data is synced from the Chrome Web Store. View the official store page for the most current information.
This extension is no longer available on the Chrome Web Store. We noticed it was gone on Feb 07, 2026.
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 3,
"name": "Form Filler Pro - Auto Fill Forms",
"version": "1.0.0",
"description": "Save form profiles and auto-fill any form with one click. Perfect for QA testing, customer support, and developers.",
"permissions": [
"storage",
"activeTab",
"scripting"
],
"host_permissions": [
"<all_urls>"
],
"action": {
"default_popup": "src\/popup\/popup.html",
"default_icon": {
"16": "icons\/icon16.png",
"32": "icons\/icon32.png",
"48": "icons\/icon48.png",
"128": "icons\/icon128.png"
}
},
"content_scripts": [
{
"matches": [
"<all_urls>"
],
"js": [
"src\/content\/content.js"
],
"css": [
"src\/content\/content.css"
],
"run_at": "document_idle",
"all_frames": true
}
],
"background": {
"service_worker": "src\/background\/background.js"
},
"commands": {
"fill-last-profile": {
"suggested_key": {
"default": "Alt+F"
},
"description": "Fill form with last used profile"
},
"capture-form": {
"suggested_key": {
"default": "Alt+C"
},
"description": "Capture current form"
}
},
"icons": {
"16": "icons\/icon16.png",
"32": "icons\/icon32.png",
"48": "icons\/icon48.png",
"128": "icons\/icon128.png"
}
}