Data is synced from the Chrome Web Store. View the official store page for the most current information.
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 3,
"name": "DeadlineBuddy",
"version": "1.0.2",
"description": "A simple and efficient task notifier to keep track of your important tasks",
"permissions": [
"storage",
"notifications",
"activeTab",
"scripting",
"alarms",
"windows"
],
"background": {
"service_worker": "background.js"
},
"action": {
"default_popup": "popup.html",
"default_title": "DeadlineBuddy",
"default_icon": {
"16": "assets\/icons\/128.png",
"32": "assets\/icons\/128.png",
"48": "assets\/icons\/128.png",
"128": "assets\/icons\/128.png"
}
},
"icons": {
"16": "assets\/icons\/128.png",
"32": "assets\/icons\/128.png",
"48": "assets\/icons\/128.png",
"128": "assets\/icons\/128.png"
},
"content_scripts": [
{
"matches": [
"<all_urls>"
],
"js": [
"content.js"
],
"run_at": "document_end"
}
],
"web_accessible_resources": [
{
"resources": [
"notification.html"
],
"matches": [
"<all_urls>"
]
}
]
}