Files
dotfiles/pkgs/firefox-history-exporter/manifest.json
2026-01-31 11:53:43 -05:00

26 lines
510 B
JSON

{
"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"
},
"browser_specific_settings": {
"gecko": {
"id": "firefox-history-exporter@nmasur.com",
"data_collection_permissions": {
"required": ["none"]
}
}
}
}