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",
"name": "Form Recover",
"description": "Essential form recovery for websites. Locally saves form data in real-time and restores it after crashes.",
"version": "0.2.1",
"icons": {
"32": "public\/icon-32.png",
"64": "public\/icon-64.png",
"128": "public\/icon-128.png"
},
"manifest_version": 3,
"permissions": [
"storage",
"unlimitedStorage",
"activeTab",
"scripting",
"offscreen",
"favicon"
],
"host_permissions": [
"<all_urls>"
],
"background": {
"service_worker": "background\/index.js"
},
"action": {
"default_popup": "popup\/index.html",
"default_icon": "public\/icon-128.png"
},
"content_scripts": [
{
"matches": [
"<all_urls>"
],
"js": [
"content\/index.js"
],
"run_at": "document_start",
"all_frames": true,
"match_about_blank": true
}
],
"web_accessible_resources": [
{
"resources": [
"public\/*",
"injector\/index.js"
],
"matches": [
"<all_urls>"
]
}
]
}