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": "Copy Form Content",
"version": "1.0.0",
"icons": {
"16": "img\/icon16.png",
"48": "img\/icon48.png",
"128": "img\/icon128.png"
},
"author": "Ivan Angelov",
"description": "A simple extension that allows the user to copy data from one form to another.",
"permissions": [
"storage",
"contextMenus"
],
"content_scripts": [
{
"matches": [
"*:\/\/*\/*"
],
"js": [
"js\/content-script.js"
]
}
],
"background": {
"service_worker": "js\/service_worker.js"
}
}