print-element-picker/manifest.json
2026-08-08 17:35:53 +02:00

18 lines
439 B
JSON

{
"manifest_version": 3,
"name": "Print Element Picker",
"version": "1.0",
"description": "Interactively pick an element on the page and print only that element.",
"permissions": ["activeTab", "scripting"],
"action": {
"default_title": "Pick element to print"
},
"background": {
"scripts": ["background.js"]
},
"browser_specific_settings": {
"gecko": {
"id": "print-picker@yourdomain.com"
}
}
}