adjust daily summary to use browser extension for history

This commit is contained in:
Noah Masur
2026-01-27 14:13:46 -05:00
parent 430b522c61
commit 49e35403b6
9 changed files with 144 additions and 11 deletions

View File

@@ -0,0 +1,17 @@
{
"manifest_version": 3,
"name": "History Exporter",
"version": "1.0",
"description": "Automatically exports today's browsing history.",
"permissions": [
"history",
"downloads",
"alarms"
],
"background": {
"scripts": ["background.js"]
},
"action": {
"default_popup": "popup.html"
}
}