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).
34 lines
831 B
JSON
34 lines
831 B
JSON
{
|
|
"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"
|
|
}
|
|
}
|