A tool to help ISK teachers with school-related tasks. Includes an AI-powered comment generator for reports and assessments.
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": "ISK Helper",
"description": "A tool to help ISK teachers with school-related tasks. Includes an AI-powered comment generator for reports and assessments.",
"version": "2.01",
"manifest_version": 3,
"key": "MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAhA7ImA7o61MZ3p/d83OHRtbA4Zv6HkgM/vjIYYQa9k0zY7uIbDx+SrcgbNGGPCR1j3Kp5yfNjq1c9XaxcbmJ1QwYg5i8GNbi1E/gjmgU8VzGRiGM9TGOY59geCVUMqZ8nOI0wU/SEXIyThFp5Sj1v1+YtPMMME478J9Q6cbvJ5GNNtReKucyGpgtYkxwDzRDQ1b047gV4JSfx2kPcpJEar9XyrL2IDz9RL/5KJT4lIYwOF3BTcT4AmL4WgAqlZCodXyC4SJ9vaUj+7/dgg+Zy6oGxyUrHxZr4x2lzx1g0uIMzZzRkE62/lsEChM2NNewexHQxvbWPZh5kRPnzQiFMQIDAQAB",
"permissions": [
"identity",
"contextMenus",
"clipboardRead",
"activeTab",
"tabs",
"storage"
],
"background": {
"service_worker": "/background/background.js",
"type": "module"
},
"content_scripts": [
{
"matches": [
"https://*.managebac.com/*"
],
"all_frames": true,
"js": [
"/contentscripts/MBContentScript.js"
],
"css": [
"/contentscripts/MBCSS.css"
]
}
],
"oauth2": {
"client_id": "187113300431-30lk3arudl72l28ju0pmmqmorpbtfqak.apps.googleusercontent.com",
"scopes": [
"https://www.googleapis.com/auth/userinfo.email",
"https://www.googleapis.com/auth/userinfo.profile"
]
},
"options_page": "options.html",
"action": {
"default_title": "ISK Helper",
"default_icon": "icon.png",
"default_popup": "popup.html"
},
"icons": {
"16": "icon.png",
"32": "icon.png",
"48": "icon.png",
"128": "icon.png"
}
}