Files
2026-09-12 14:29:44 +02:00

56 lines
1.2 KiB
JSON

{
"manifest_version": 3,
"name": "Piscine Graph Tweaks",
"version": "1.0.0",
"description": "Progress counter (validated / total, %) on the EPITA piscine graph, plus a full screen view of the graph with search, minimap and keyboard navigation.",
"browser_specific_settings": {
"gecko": {
"id": "piscine-graph-tweaks@valentin",
"strict_min_version": "115.0"
}
},
"icons": {
"48": "src/icon.svg",
"96": "src/icon.svg"
},
"host_permissions": [
"https://intra.forge.epita.fr/*"
],
"content_scripts": [
{
"matches": [
"https://intra.forge.epita.fr/*/root/exercises_*"
],
"js": [
"src/inject.js"
],
"run_at": "document_start",
"all_frames": false
},
{
"matches": [
"https://intra.forge.epita.fr/*/root/exercises_*"
],
"js": [
"src/viewer.js",
"src/content.js"
],
"css": [
"src/panel.css"
],
"run_at": "document_idle",
"all_frames": false
}
],
"web_accessible_resources": [
{
"resources": [
"src/net-hook.js"
],
"matches": [
"https://intra.forge.epita.fr/*"
]
}
]
}