Inspect and view changes in IITG AutoLogin++ 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",
"manifest_version": 3,
"name": "IITG AutoLogin++",
"description": "Automatically log into the IITG network with this extension. No more manual logins or keeping tabs open every time!",
"version": "1.0",
"background": {
"service_worker": "background.js",
"type": "module"
},
"action": {
"default_popup": "Popup.html"
},
"options_page": "Options.html",
"permissions": [
"storage",
"offscreen"
],
"host_permissions": [
"https://agnigarh.iitg.ac.in:1442/*"
],
"icons": {
"128": "Icons/icon_active2.png"
}
}