print-element-picker/manifest.json
Tibo De Peuter 3aff8dc4d9
Some checks failed
Build and Sign Extension / build-sign-release (push) Failing after 3s
ci: add release workflow
2026-08-08 17:54:51 +02:00

19 lines
565 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-element-picker@git.depeuter.dev",
"update_url": "https://git.depeuter.dev/tdpeuter/tdpeuter/print-element-picker/raw/branch/main/updates.json"
}
}
}