Inspect and view changes in School Passport SSO 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": "School Passport SSO",
"description": "This extension gives you seamless and secure access to all your web-based learning resources within the School Passport Platform",
"author": "GG4L",
"version": "0.0.2",
"manifest_version": 3,
"background": {
"service_worker": "service_worker.js",
"type": "module"
},
"icons": {
"16": "icons/icon16.png",
"32": "icons/icon48.png",
"48": "icons/icon48.png",
"128": "icons/icon128.png"
},
"content_scripts": [
{
"matches": [
"https://*/*"
],
"js": [
"content.js"
]
}
],
"web_accessible_resources": [
{
"resources": [
"inject_script.js"
],
"matches": [
"<all_urls>"
],
"use_dynamic_url": true
}
],
"permissions": [
"tabs",
"webRequest",
"webRequestAuthProvider",
"nativeMessaging",
"activeTab"
],
"externally_connectable": {
"matches": [
"https://*.gg4l.com/*"
]
},
"update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}