Inspect and view changes in BroncoDirectMe 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",
"name": "BroncoDirectMe",
"description": "A Chrome Extension for BroncoDirect to be used by Cal Poly Pomona students.",
"version": "1.1.4",
"manifest_version": 3,
"action": {
"default_popup": "index.html",
"default_icon": {
"16": "/images/icon.png",
"32": "/images/icon.png",
"48": "/images/icon.png",
"128": "/images/icon.png"
}
},
"icons": {
"16": "/images/icon.png",
"48": "/images/icon.png",
"128": "/images/icon.png"
},
"permissions": [
"storage",
"identity"
],
"content_scripts": [
{
"js": [
"content.js"
],
"matches": [
"https://cmsweb.cms.cpp.edu/*"
],
"all_frames": true
}
]
}