Files

44 lines
1.1 KiB
JSON

{
"manifest_version": 3,
"name": "TaskDecay",
"version": "1.0.0",
"description": "Smart Task Review & Archive — surface buried tasks, score by age + priority, and clean your backlog with one click.",
"permissions": [
"storage",
"activeTab",
"alarms"
],
"host_permissions": [
"https://api.todoist.com/*",
"https://api.ticktick.com/*",
"https://api.notion.com/*",
"https://todoist.com/*",
"https://ticktick.com/*",
"https://notion.so/*"
],
"background": {
"service_worker": "src/background.ts"
},
"action": {
"default_popup": "src/popup.html",
"default_icon": {
"16": "icon16.png",
"48": "icon48.png",
"128": "icon128.png"
}
},
"options_page": "src/options.html",
"content_scripts": [
{
"matches": ["https://todoist.com/*", "https://ticktick.com/*", "https://www.notion.so/*", "https://notion.so/*"],
"js": ["src/content.ts"],
"css": ["src/content.css"],
"run_at": "document_idle"
}
],
"icons": {
"16": "icon16.png",
"48": "icon48.png",
"128": "icon128.png"
}
}