add Makefile

This commit is contained in:
Gaspard Jankowiak 2024-10-04 13:32:54 +02:00
commit 3178e5cf7e
3 changed files with 39 additions and 1 deletions

27
manifest_v2.json Normal file
View file

@ -0,0 +1,27 @@
{
"manifest_version": 2,
"name": "KF-Trombi",
"version": "0.3",
"browser_specific_settings": {
"gecko": {
"id": "kf-trombi@math.janko.fr",
"update_url": "https://gaspard.janko.fr/s/firefox-add-ons/updates.json"
}
},
"description": "Generates a directory of students with photos from online.uni-graz.at",
"icons": {
"128": "icons/icon-128-padded.png"
},
"content_scripts": [
{
"matches": ["https://online.uni-graz.at/kfu_online/pl/ui/$ctx/wblvgrp.anmeldungen*"],
"js": ["directory.js"],
"css": ["directory.css"]
}
]
}