Inspect and view changes in Google Gradebook Comment Bank source codes across current and past versions
Premium users can view and search full source code, and see the source code differences
between two versions.
Upgrade to premium
manifest.json
{
"update_url": "https://clients2.google.com/service/update2/crx",
"name": "Google Gradebook Comment Bank",
"author": "Al Caughey",
"description": "Comment banks to assist with feedback for Google Gradebook assignments",
"version": "1.0.2",
"manifest_version": 3,
"background": {
"service_worker": "background.js"
},
"action": {},
"content_scripts": [
{
"js": [
"js/util.js",
"js/classes.js",
"js/banks.js",
"js/draggable.js",
"ggcb.js"
],
"css": [
"/css/ggcb.css"
],
"matches": [
"https://classroom.google.com/*/tg/*",
"https://classroom.google.com/*/submissions/*"
]
}
],
"icons": {
"128": "ggcb.png"
},
"permissions": [
"storage"
],
"web_accessible_resources": [
{
"matches": [
"https://classroom.google.com/*"
],
"resources": [
"images/*.png"
]
}
]
}