HKUST Timetable Planner Stylus
Customize your Timetable Ext Planner!
HKUST Timetable Planner Stylusとは何ですか?
HKUST Timetable Planner Stylusはfhfuihによって開発されたChromeの拡張機能で、その主な機能は「Customize your Timetable Ext Planner!」です。
拡張機能のスクリーンショット
HKUST Timetable Planner Stylus拡張機能のCRXファイルをダウンロード
HKUST Timetable Planner Stylus拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
This is a simple extension for HKUST Timetable Planner (https://admlu65.ust.hk/) to customize the timetable blocks. This extension is open-sourced at https://github.com/fhfuih/hkust-timetable-planner-stylus under GPL-3.0 license. This is a 3rd-party plugin (Chrome browser extension) for the HKUST Timetable Planner web app. This project is not affiliated to, nor has any relationship with, HKUST or the HKUST Timetable Planner web app.
拡張機能の基本情報
名前 | HKUST Timetable Planner Stylus |
ID | dhdbadjkkmclkpcfofolhomoiakjephh |
公式URL | https://chromewebstore.google.com/detail/hkust-timetable-planner-s/dhdbadjkkmclkpcfofolhomoiakjephh |
説明 | Customize your Timetable Ext Planner! |
ファイルサイズ | 89.89 KB |
インストール数 | 109 |
現在のバージョン | 2.0 |
最終更新日 | 2023-12-28 |
公開日 | 2018-09-30 |
評価 | 5.00/5 合計 2 レビュー |
開発者 | fhfuih |
Eメール | [email protected] |
支払い方法 | free |
拡張機能のウェブサイト | https://github.com/fhfuih/hkust-timetable-planner-stylus |
対応言語 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "HKUST Timetable Planner Stylus", "description": "Customize your Timetable Ext Planner!", "version": "2.0", "permissions": [], "content_scripts": [ { "matches": [ "https:\/\/admlu65.ust.hk\/" ], "js": [ "pageScript.js" ], "world": "MAIN" } ], "background": { "service_worker": "serviceWorker.js" }, "icons": { "16": "icons\/icon-16.png", "32": "icons\/icon-32.png", "48": "icons\/icon-48.png", "128": "icons\/icon-128.png" }, "action": { "default_popup": "popup\/popup.html" }, "externally_connectable": { "matches": [ "https:\/\/admlu65.ust.hk\/" ] } } |