Skillco Sync

A tool that syncs your university transcripts with Skillco.net

Apa itu Skillco Sync?

Skillco Sync adalah ekstensi Chrome yang dikembangkan oleh skillco365, dan fitur utamanya adalah "A tool that syncs your university transcripts with Skillco.net".

Screenshot Ekstensi

screenshot

Unduh Berkas CRX Ekstensi Skillco Sync

Unduh file ekstensi Skillco Sync dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.

Petunjuk Penggunaan Ekstensi

                        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.                    

Informasi Dasar Ekstensi

Nama Skillco Sync Skillco Sync
ID fnkiileiglkegcecilpncpfkfajajgld
URL Resmi https://chromewebstore.google.com/detail/skillco-sync/fnkiileiglkegcecilpncpfkfajajgld
Deskripsi A tool that syncs your university transcripts with Skillco.net
Ukuran File 30.72 KB
Jumlah Instalasi 71
Versi Saat Ini 1.0.8
Terakhir Diperbarui 2024-03-04
Tanggal Publikasi 2023-01-03
Penilaian 5.00/5 Total 1 Penilaian
Pengembang skillco365
Email [email protected]
Tipe Pembayaran free
Situs Ekstensi https://skillco.net/home/
URL Halaman Bantuan https://skillco.net/home/
URL Halaman Kebijakan Privasi https://skillco.net/about/privacy-policy
Bahasa yang Didukung 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"
        }
    ]
}