First Commit. This was the first tool I asked a machine to build for me.

This commit is contained in:
2026-04-01 17:55:34 +02:00
commit f6507c5c16
8 changed files with 702 additions and 0 deletions

27
manifest.json Normal file
View File

@@ -0,0 +1,27 @@
{
"manifest_version": 3,
"name": "Edge Tab Catcher",
"version": "1.0.0",
"description": "Export all open tabs with their URLs, titles, and descriptions to a Markdown file",
"permissions": [
"tabs",
"activeTab",
"scripting",
"downloads"
],
"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"
},
"author": "Your Name",
"homepage_url": "https://github.com/yourusername/tab-exporter"
}