An Autolab rubric.. finally!
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",
"manifest_version": 2,
"name": "30 mins or less",
"description": "An Autolab rubric.. finally!",
"version": "2.0",
"icons": {
"16": "logo.png",
"48": "logo.png",
"128": "logo.png"
},
"permissions": [
"tabs"
],
"background": {
"scripts": [
"background.js"
],
"persistent": false
},
"content_scripts": [
{
"matches": [
"https://autolab.andrew.cmu.edu/*/submissions/*"
],
"js": [
"content.js"
]
}
]
}