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”。
擴展截圖
下載Skillco Sync擴展crx文件
下載Skillco Sync擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
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.
擴展基本資訊
名稱 | |
ID | fnkiileiglkegcecilpncpfkfajajgld |
官方網址 | 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" } ] } |