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": "AutoFill Copilot - Fill Tax, Visa & Government Forms Instantly",
"version": "1.0.4",
"description": "Fill complex tax, visa, insurance, and government forms in seconds. Extract data from documents. Privacy \u00b7 GDPR-aware.",
"author": "Layth Fadhala",
"homepage_url": "https:\/\/autofillcopilot.com",
"action": {
"default_popup": "dist\/popup.html",
"default_title": "AutoFill Copilot",
"default_icon": {
"16": "icons\/icon-16.png",
"32": "icons\/icon-32.png",
"48": "icons\/icon-48.png",
"128": "icons\/icon-128.png"
}
},
"side_panel": {
"default_path": "dist\/popup.html"
},
"options_page": "dist\/options.html",
"background": {
"service_worker": "dist\/background.js"
},
"content_scripts": [
{
"matches": [
"https:\/\/*\/*",
"http:\/\/*\/*"
],
"js": [
"dist\/content\/sync-auth.js"
],
"run_at": "document_start",
"all_frames": true
},
{
"matches": [
"https:\/\/*\/*",
"http:\/\/*\/*"
],
"js": [
"dist\/content\/getFieldLabel.js",
"dist\/content\/utils.js",
"dist\/content\/form-detection.js",
"dist\/content\/forms-observer.js",
"dist\/content\/field-filling.js",
"dist\/content\/animation-utils.js",
"dist\/content\/form-filling.js",
"dist\/content\/clear-forms.js"
],
"css": [
"dist\/content\/styles.css"
],
"run_at": "document_idle",
"all_frames": true
},
{
"matches": [
"https:\/\/*\/*",
"http:\/\/*\/*"
],
"js": [
"dist\/content\/floating-button.js"
],
"run_at": "document_idle",
"all_frames": false
}
],
"permissions": [
"storage",
"contextMenus",
"tabs",
"sidePanel",
"webNavigation"
],
"host_permissions": [
"https:\/\/*\/*",
"http:\/\/*\/*"
],
"content_security_policy": {
"extension_pages": "script-src 'self'; object-src 'self';"
},
"web_accessible_resources": [
{
"resources": [
"icons\/*",
"dist\/popup.html",
"dist\/popup.css"
],
"matches": [
"<all_urls>"
]
}
],
"icons": {
"16": "icons\/icon-16.png",
"32": "icons\/icon-32.png",
"48": "icons\/icon-48.png",
"128": "icons\/icon-128.png"
},
"minimum_chrome_version": "88"
}