Inspect and view changes in PUPSIS Overall GWA 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
{
"manifest_version": 3,
"name": "PUPSIS Overall GWA",
"description": "This extension calculates the overall GWA of a student in PUPSIS.",
"version": "1.6",
"action": {
"default_popup": "popup/popup.html"
},
"icons": {
"16": "images/logo-16.png",
"32": "images/logo-32.png",
"48": "images/logo-48.png",
"128": "images/logo-128.png"
},
"background": {
"service_worker": "background.js",
"type": "module"
},
"permissions": [
"storage",
"activeTab",
"scripting"
],
"content_scripts": [
{
"matches": [
"<all_urls>"
],
"js": [
"contentScript.js"
]
}
],
"update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}