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": "FauxFiller",
"version": "1.3.0",
"description": "A modern, secure form filler that generates realistic dummy data for testing and development",
"permissions": [
"activeTab",
"storage",
"scripting",
"contextMenus"
],
"host_permissions": [
"<all_urls>"
],
"background": {
"service_worker": "background.js"
},
"content_scripts": [
{
"matches": [
"<all_urls>"
],
"js": [
"content.js"
],
"all_frames": true
}
],
"action": {
"default_popup": "src\/popup\/index.html",
"default_title": "FauxFiller",
"default_icon": {
"16": "icons\/icon-16.png",
"32": "icons\/icon-32.png",
"48": "icons\/icon-48.png",
"128": "icons\/icon-128.png"
}
},
"options_ui": {
"page": "src\/options\/index.html",
"open_in_tab": true
},
"icons": {
"16": "icons\/icon-16.png",
"32": "icons\/icon-32.png",
"48": "icons\/icon-48.png",
"128": "icons\/icon-128.png"
},
"commands": {
"fill-all": {
"description": "Fill all inputs on the page",
"suggested_key": {
"default": "Ctrl+Shift+F"
}
}
},
"content_security_policy": {
"extension_pages": "script-src 'self'; object-src 'self'"
}
}