epas-ripper/manifest.json
Gaspard Jankowiak 68a20e8126 convert to chrome
2026-06-04 22:13:36 +02:00

29 lines
555 B
JSON

{
"manifest_version": 3,
"name": "KF-Application-Downloader",
"version": "0.1.0",
"description": "Downloads all files from an application procedure at the KFU",
"permissions": [
"cookies"
],
"host_permissions": [
"https://personal.uni-graz.at/*"
],
"background": {
"service_worker": "background.js"
},
"content_scripts": [
{
"matches": [
"https://personal.uni-graz.at/*"
],
"js": [
"lib/jszip.js",
"content.js"
],
"css": [
"style.css"
]
}
]
}