Skillco Sync

A tool that syncs your university transcripts with Skillco.net

Skillco Sync란 무엇입니까?

Skillco Sync은(는) skillco365에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "A tool that syncs your university transcripts with Skillco.net"입니다.

확장 프로그램 스크린샷

screenshot

Skillco Sync 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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.                    

확장 프로그램 기본 정보

이름 Skillco Sync Skillco Sync
ID fnkiileiglkegcecilpncpfkfajajgld
공식 URL https://chromewebstore.google.com/detail/skillco-sync/fnkiileiglkegcecilpncpfkfajajgld
설명 A tool that syncs your university transcripts with Skillco.net
파일 크기 30.72 KB
설치 횟수 71
현재 버전 1.0.8
최근 업데이트 2024-03-04
출시 날짜 2023-01-03
평점 5.00/5 총 1 개의 평점
개발자 skillco365
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://skillco.net/home/
도움말 페이지 URL https://skillco.net/home/
개인정보 보호 정책 페이지 URL https://skillco.net/about/privacy-policy
지원되는 언어 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"
        }
    ]
}