2024-02-01 00:53:14 +00:00
|
|
|
{
|
|
|
|
"manifest_version": 3,
|
|
|
|
"name": "Form Copypasta",
|
|
|
|
"description": "Copy and paste form element values. Not for distribution. Internal use only. Based on Copy Form (0.0.1.2) by Sam Larison.",
|
2024-02-01 20:31:47 +00:00
|
|
|
"version": "0.1.0.035",
|
2024-02-01 00:53:14 +00:00
|
|
|
"content_scripts": [
|
|
|
|
{
|
|
|
|
"js": [
|
|
|
|
"content.js"
|
|
|
|
],
|
|
|
|
"run_at": "document_idle",
|
|
|
|
"all_frames": true,
|
|
|
|
"matches": [
|
|
|
|
"<all_urls>"
|
|
|
|
]
|
|
|
|
}
|
|
|
|
],
|
|
|
|
"background": {
|
|
|
|
"service_worker": "background.js",
|
|
|
|
"type": "module"
|
|
|
|
},
|
|
|
|
"icons": {
|
|
|
|
"16": "icon16.png",
|
|
|
|
"32": "icon32.png",
|
|
|
|
"48": "icon48.png",
|
|
|
|
"64": "icon64.png",
|
|
|
|
"128": "icon128.png"
|
|
|
|
},
|
|
|
|
"permissions": [
|
|
|
|
"activeTab",
|
|
|
|
"contextMenus",
|
|
|
|
"storage",
|
|
|
|
"tabs"
|
|
|
|
]
|
|
|
|
}
|