Skillco Sync

A tool that syncs your university transcripts with Skillco.net

Hvad er Skillco Sync?

Skillco Sync er en Chrome-udvidelse udviklet af skillco365, og dens hovedfunktion er "A tool that syncs your university transcripts with Skillco.net".

Udvidelsesskærmbilleder

screenshot

Download Skillco Sync-udvidelses-CRX-fil

Download Skillco Sync-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.

Brugsanvisning til Udvidelsen

                        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æggende oplysninger om udvidelsen

Navn Skillco Sync Skillco Sync
ID fnkiileiglkegcecilpncpfkfajajgld
Officiel URL https://chromewebstore.google.com/detail/skillco-sync/fnkiileiglkegcecilpncpfkfajajgld
Beskrivelse A tool that syncs your university transcripts with Skillco.net
Filstørrelse 30.72 KB
Antal Installationer 71
Nuværende Version 1.0.8
Senest Opdateret 2024-03-04
Udgivelsesdato 2023-01-03
Bedømmelse 5.00/5 Samlet 1 Bedømmelser
Udvikler skillco365
E-mail [email protected]
Betalingsmetode free
Udvidelseswebsted https://skillco.net/home/
Hjælpeside-URL https://skillco.net/home/
URL til Fortrolighedspolitik Side https://skillco.net/about/privacy-policy
Understøttede Sprog 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"
        }
    ]
}