Initial commit: Outlook Web Inbox Count extension v1.4

Chrome/Firefox extension that displays the total inbox item count next
to the Inbox label in Outlook Web. Includes build+publish automation
via the Chrome Web Store API (see PUBLISHING.md).
This commit is contained in:
Giorgio Gilestro 2026-04-09 07:56:37 +01:00
commit 922d520f02
9 changed files with 641 additions and 0 deletions

34
manifest.json Normal file
View file

@ -0,0 +1,34 @@
{
"manifest_version": 3,
"name": "Outlook Web Inbox Count",
"version": "1.4",
"description": "Adds the total number of items next to the Inbox label in Outlook Web",
"author": "Giorgio Gilestro",
"homepage_url": "https://lab.gilest.ro",
"browser_specific_settings": {
"gecko": {
"id": "outlook-inbox-count@gilest.ro"
}
},
"permissions": [],
"host_permissions": [
"https://outlook.office.com/*",
"https://outlook.office365.com/*",
"https://outlook.cloud.microsoft/*"
],
"content_scripts": [
{
"matches": [
"https://outlook.office.com/*",
"https://outlook.office365.com/*",
"https://outlook.cloud.microsoft/*"
],
"js": ["content.js"]
}
],
"icons": {
"16": "icon16.png",
"64": "icon64.png",
"128": "icon128.png"
}
}