Skillco Sync
A tool that syncs your university transcripts with Skillco.net
What is Skillco Sync?
Skillco Sync is a Chrome extension developed by skillco365, and its main feature is "A tool that syncs your university transcripts with Skillco.net".
Extension Screenshots
Download Skillco Sync Extension CRX File
Download Skillco Sync extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
When the user presses sync, a new tab will pop up and get transcript data from userve.uvu.edu and visit skillco.net to submit the data where it can be allocated into a skillset.
Extension Basic Information
Name | |
ID | fnkiileiglkegcecilpncpfkfajajgld |
Official URL | https://chromewebstore.google.com/detail/skillco-sync/fnkiileiglkegcecilpncpfkfajajgld |
Description | A tool that syncs your university transcripts with Skillco.net |
File Size | 30.72 KB |
Installation Count | 71 |
Current Version | 1.0.8 |
Last Updated | 2024-03-04 |
Publish Date | 2023-01-03 |
Rating | 5.00/5 Total 1 Ratings |
Developer | skillco365 |
[email protected] | |
Payment Type | free |
Extension Website | https://skillco.net/home/ |
Help Page URL | https://skillco.net/home/ |
Privacy Policy Page URL | https://skillco.net/about/privacy-policy |
Supported Languages | en-US |
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" } ] } |