Skillco Sync
A tool that syncs your university transcripts with Skillco.net
Vad är Skillco Sync?
Skillco Sync är en Chrome-tillägg utvecklad av skillco365, och dess huvudfunktion är "A tool that syncs your university transcripts with Skillco.net".
Tilläggsskärmbilder
Ladda ner Skillco Sync-förlängningens CRX-fil
Ladda ner Skillco Sync-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.
Användarmanual för Tillägg
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.
Grundläggande Information om Tillägg
Namn | |
ID | fnkiileiglkegcecilpncpfkfajajgld |
Officiell webbadress | https://chromewebstore.google.com/detail/skillco-sync/fnkiileiglkegcecilpncpfkfajajgld |
Beskrivning | A tool that syncs your university transcripts with Skillco.net |
Filstorlek | 30.72 KB |
Antal Installationer | 71 |
Aktuell Version | 1.0.8 |
Senast Uppdaterad | 2024-03-04 |
Publiceringsdatum | 2023-01-03 |
Betyg | 5.00/5 Totalt 1 Betyg |
Utvecklare | skillco365 |
E-post | [email protected] |
Betalningssätt | free |
Tilläggswebbplats | https://skillco.net/home/ |
Hjälpsida URL | https://skillco.net/home/ |
URL till Sekretesspolicy Sidan | https://skillco.net/about/privacy-policy |
Stödda Språk | 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" } ] } |