Skillco Sync

A tool that syncs your university transcripts with Skillco.net

Skillco Sync là gì?

Skillco Sync là một tiện ích mở rộng Chrome được phát triển bởi skillco365, và tính năng chính của nó là "A tool that syncs your university transcripts with Skillco.net".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng Skillco Sync

Tải xuống các tệp mở rộng Skillco Sync dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Skillco Sync Skillco Sync
ID fnkiileiglkegcecilpncpfkfajajgld
URL Chính Thức https://chromewebstore.google.com/detail/skillco-sync/fnkiileiglkegcecilpncpfkfajajgld
Mô tả A tool that syncs your university transcripts with Skillco.net
Kích Thước Tệp 30.72 KB
Số Lần Cài Đặt 71
Phiên Bản Hiện Tại 1.0.8
Cập Nhật Lần Cuối 2024-03-04
Ngày Phát Hành 2023-01-03
Đánh Giá 5.00/5 Tổng số 1 Đánh Giá
Nhà Phát Triển skillco365
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://skillco.net/home/
URL Trang Trợ Giúp https://skillco.net/home/
URL Trang Chính Sách Bảo Mật https://skillco.net/about/privacy-policy
Ngôn Ngữ Được Hỗ Trợ 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"
        }
    ]
}