Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion frontend/src/lib/server/session.ts
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ export async function setSessionCookie(cookies: Cookies, source: Response | stri
path: '/',
httpOnly: true,
sameSite: 'lax',
maxAge: 60 * 60 // 1 heure
maxAge: 60 * 60 * 24 * 30 // 30 jours
});
return;
}
Expand Down
Binary file added plugin/firefox/assets/images/icons/icon16.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added plugin/firefox/assets/images/icons/icon32.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added plugin/firefox/assets/images/icons/icon48.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
9 changes: 7 additions & 2 deletions plugin/firefox/manifest.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"manifest_version": 2,
"name": "GreenScore",
"version": "1.6.2",
"version": "1.6.3",
"description": "GreenScore est un plugin et une plateforme web qui mesure l'empreinte carbone d'un site par utilisateur et organisation. Il offre des tableaux de bord personnels et d'organisation, des analyses ponctuelles, et un classement des sites les plus énergivores pour sensibiliser et encourager des pratiques numériques durables.",
"browser_specific_settings": {
"gecko": {
Expand Down Expand Up @@ -31,6 +31,11 @@
},
"browser_action": {
"default_popup": "src/popup.html",
"default_title": "Analyser la page"
"default_title": "Analyser la page",
"default_icon": {
"16": "assets/images/icons/icon16.png",
"32": "assets/images/icons/icon32.png",
"48": "assets/images/icons/icon48.png"
}
}
}
Loading