Inspect and view changes in MTWSCUU Extension 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
{
"name": "MTWSCUU Extension",
"version": "1.6",
"manifest_version": 2,
"icons": {
"128": "img/polypeka128.png"
},
"browser_action": {
"default_title": "Make my life a bit easier. Please."
},
"content_scripts": [
{
"matches": [
"*://*.spbstu.ru/*"
],
"js": [
"spbstu/autologin.js"
],
"run_at": "document_idle",
"all_frames": true
},
{
"matches": [
"*://cas.spbstu.ru/login*"
],
"js": [
"spbstu/autologin_cas.js"
],
"run_at": "document_idle",
"all_frames": true
},
{
"matches": [
"*://*.spbstu.ru/*"
],
"js": [
"spbstu/moodle_courses_order.js"
],
"run_at": "document_idle",
"all_frames": false
},
{
"matches": [
"*://*.spbstu.ru/*"
],
"js": [
"spbstu/moodle_memefy_cards.js"
],
"run_at": "document_idle",
"all_frames": false
}
],
"permissions": []
}