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 |
Eメール | [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" } ] } |