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 |
官方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" } ] } |