Adds buttons for quick access to Attendance and Timetable on the VIT portal.
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": "VTOP Shortcut",
"version": "1.2",
"description": "Adds buttons for quick access to Attendance and Timetable on the VIT portal.",
"permissions": [
"storage"
],
"host_permissions": [
"https://vtop.vitbhopal.ac.in/vtop/content"
],
"content_scripts": [
{
"matches": [
"https://vtop.vitbhopal.ac.in/vtop/content"
],
"js": [
"content.js"
],
"run_at": "document_end"
}
],
"icons": {
"16": "icons/icon.png",
"48": "icons/icon.png",
"128": "icons/icon.png"
},
"action": {
"default_popup": "popup.html"
},
"web_accessible_resources": [
{
"resources": [
"icons/logo.png"
],
"matches": [
"<all_urls>"
]
}
]
}