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",
"description": "A better to-do list sidebar for Canvas, Blackboard, and D2L Brightspace.",
"version": "1.5.4",
"manifest_version": 3,
"name": "Tasks for Canvas \u2013 now supporting Blackboard, D2L Brightspace",
"action": {
"default_popup": "popup.html"
},
"options_page": "options.html",
"background": {
"service_worker": "background.bundle.js"
},
"permissions": [
"storage"
],
"icons": {
"128": "icon-128.png"
},
"content_scripts": [
{
"matches": [
"https:\/\/*\/*"
],
"js": [
"contentScript.bundle.js"
],
"css": [
"content.styles.css"
],
"all_frames": true
}
],
"web_accessible_resources": [
{
"resources": [
"icon-128.png",
"options.html"
],
"matches": [
"https:\/\/*\/*"
]
}
],
"content_security_policy": {
"extension_pages": "script-src 'self'; object-src 'self'"
}
}