Skillco Sync
A tool that syncs your university transcripts with Skillco.net
Wat is Skillco Sync?
Skillco Sync is een Chrome-extensie ontwikkeld door skillco365, en de belangrijkste functie is "A tool that syncs your university transcripts with Skillco.net".
Extensie Screenshots
Download het CRX-bestand van de extensie Skillco Sync
Download Skillco Sync-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.
Instructies voor het Gebruik van de Extensie
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.
Basisinformatie over de Extensie
Naam | |
ID | fnkiileiglkegcecilpncpfkfajajgld |
Officiële URL | https://chromewebstore.google.com/detail/skillco-sync/fnkiileiglkegcecilpncpfkfajajgld |
Beschrijving | A tool that syncs your university transcripts with Skillco.net |
Bestandsgrootte | 30.72 KB |
Aantal Installaties | 71 |
Huidige Versie | 1.0.8 |
Laatst Bijgewerkt | 2024-03-04 |
Publicatiedatum | 2023-01-03 |
Beoordeling | 5.00/5 Totaal 1 Beoordelingen |
Ontwikkelaar | skillco365 |
[email protected] | |
Betalingswijze | free |
Extensiewebsite | https://skillco.net/home/ |
Help Pagina-URL | https://skillco.net/home/ |
URL van de Privacybeleid Pagina | https://skillco.net/about/privacy-policy |
Ondersteunde Talen | 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" } ] } |