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": "Canvas Helper - Canvas Lms Quiz Tools",
"description": "Canvas helper for Canvas LMS\u2014Canvas quiz tools to answer faster and complete quizzes faster using workflow hacks.",
"version": "2.0.0",
"permissions": [
"activeTab",
"scripting",
"storage",
"sidePanel"
],
"icons": {
"16": "icons\/ch.png",
"48": "icons\/ch.png",
"128": "icons\/ch.png"
},
"action": {
"default_icon": {
"16": "icons\/icon48.png",
"48": "icons\/icon48.png",
"128": "icons\/icon128.png"
}
},
"side_panel": {
"default_path": "sidepanel.html"
},
"host_permissions": [
"*:\/\/*\/*"
],
"background": {
"service_worker": "background.js"
},
"content_scripts": [
{
"matches": [
"https:\/\/extensionpay.com\/*"
],
"js": [
"ExtPay.js"
],
"run_at": "document_start"
},
{
"matches": [
"https:\/\/extensionpay.com\/*"
],
"js": [
"ExtPay.js"
],
"run_at": "document_start"
},
{
"matches": [
"<all_urls>"
],
"js": [
"content.js"
],
"run_at": "document_start",
"all_frames": true
},
{
"matches": [
"*:\/\/*.instructure.com\/courses\/*\/quizzes\/*\/take*",
"*:\/\/*.edu\/courses\/*\/quizzes\/*\/take*",
"*:\/\/*.org\/courses\/*\/quizzes\/*\/take*",
"*:\/\/*.instructure.com\/courses\/*\/assignments\/*"
],
"js": [
"saveCorrectAnswers.js"
],
"run_at": "document_start",
"all_frames": true
}
],
"web_accessible_resources": [
{
"resources": [
"saveCorrectAnswers.js",
"content.js",
"inject.js",
"style.css",
"icons\/home.png",
"icons\/reload.png"
],
"matches": [
"<all_urls>"
],
"use_dynamic_url": true
}
]
}