HKUST Timetable Planner Stylus
Customize your Timetable Ext Planner!
Qu'est-ce que HKUST Timetable Planner Stylus ?
HKUST Timetable Planner Stylus est une extension Chrome développée par fhfuih, et sa fonction principale est "Customize your Timetable Ext Planner!".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension HKUST Timetable Planner Stylus
Téléchargez les fichiers d'extension HKUST Timetable Planner Stylus au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.
Instructions d'Utilisation de l'Extension
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.
Informations de Base sur l'Extension
Nom | HKUST Timetable Planner Stylus |
ID | dhdbadjkkmclkpcfofolhomoiakjephh |
URL Officiel | https://chromewebstore.google.com/detail/hkust-timetable-planner-s/dhdbadjkkmclkpcfofolhomoiakjephh |
Description | Customize your Timetable Ext Planner! |
Taille du Fichier | 89.89 KB |
Nombre d'Installations | 109 |
Version Actuelle | 2.0 |
Dernière Mise à Jour | 2023-12-28 |
Date de Publication | 2018-09-30 |
Évaluation | 5.00/5 Total 2 Évaluations |
Développeur | fhfuih |
[email protected] | |
Type de Paiement | free |
Site Web de l'Extension | https://github.com/fhfuih/hkust-timetable-planner-stylus |
Langues Prises en Charge | 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\/" ] } } |