Files
catcher-of-tabs/manifest.json

35 lines
737 B
JSON

{
"manifest_version": 3,
"name": "Tab Catcher",
"version": "2.0.0",
"description": "Export selected tabs, windows, or tab groups to a Markdown file",
"permissions": [
"tabs",
"activeTab",
"scripting",
"downloads",
"tabGroups"
],
"action": {
"default_popup": "popup.html",
"default_icon": {
"16": "icon16.png",
"48": "icon48.png",
"128": "icon128.png"
}
},
"icons": {
"16": "icon16.png",
"48": "icon48.png",
"128": "icon128.png"
},
"browser_specific_settings": {
"gecko": {
"id": "tabcatcher@tabcatcher",
"strict_min_version": "109.0"
}
},
"author": "Your Name",
"homepage_url": "https://github.com/yourusername/tab-exporter"
}