A tool that syncs your university transcripts with Skillco.net
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": "Skillco Sync",
"version": "1.0.8",
"description": "A tool that syncs your university transcripts with Skillco.net",
"manifest_version": 3,
"author": "Jackson Lohman",
"permissions": [
"storage"
],
"action": {
"default_popup": "popup.html",
"default_title": "Skillco Sync"
},
"background": {
"service_worker": "background.js"
},
"icons": {
"96": "favicon.ico"
},
"content_scripts": [
{
"matches": [
"https://userve.uvu.edu/*"
],
"js": [
"uvu.js"
],
"run_at": "document_idle"
},
{
"matches": [
"https://skillco.net/skillco/extension/"
],
"js": [
"skillco.js"
],
"run_at": "document_idle"
}
]
}