|
|
@ -121,6 +121,7 @@ _The language status represents the percentage of translated strings in the late
|
|||
- [HideMau](https://www.flaticon.com/authors/hidemaru) for the ai summarize icon
|
||||
- [Hilmy Abiyyu A.](https://www.flaticon.com/authors/hilmy-abiyyu-a) for the ai translate and context menu icons
|
||||
- [bearicons](https://www.flaticon.com/authors/bearicons) for the empty context menu icon
|
||||
- [meaicon](https://www.flaticon.com/authors/meaicon) for the add task context menu icon
|
||||
|
||||
|
||||
<br>
|
||||
|
|
|
|||
|
Before Width: | Height: | Size: 857 B |
|
Before Width: | Height: | Size: 987 B |
BIN
images/context_menu/custom/idea.png
Normal file
|
After Width: | Height: | Size: 793 B |
BIN
images/context_menu/custom/profit.png
Normal file
|
After Width: | Height: | Size: 664 B |
BIN
images/context_menu/custom/science.png
Normal file
|
After Width: | Height: | Size: 1.9 KiB |
|
Before Width: | Height: | Size: 859 B |
BIN
images/context_menu/custom/start-up.png
Normal file
|
After Width: | Height: | Size: 1.3 KiB |
|
Before Width: | Height: | Size: 1.1 KiB |
BIN
images/context_menu/getcalendarevent.png
Normal file
|
After Width: | Height: | Size: 1.3 KiB |
BIN
images/context_menu/getcalendareventfromclipboard.png
Normal file
|
After Width: | Height: | Size: 1.5 KiB |
BIN
images/context_menu/gettask.png
Normal file
|
After Width: | Height: | Size: 1 KiB |
|
|
@ -30,11 +30,17 @@ const MICZ_IT_LOCALIZED_LANGS = ['es', 'de', 'fr', 'it'];
|
|||
export const getMenuContextCompose = () => 'compose_action_menu';
|
||||
export const getMenuContextDisplay = () => 'message_display_action_menu';
|
||||
|
||||
export const contextMenuID_GetCalendarEvent = 'mzta-get-calendar-event';
|
||||
export const contextMenuID_GetCalendarEventFromClipboard = 'mzta-get-calendar-event-from-clipboard';
|
||||
export const contextMenuID_GetTask = 'mzta-get-task';
|
||||
export const contextMenuID_AddTags = 'mzta-add-tags';
|
||||
export const contextMenuID_Spamfilter = 'mzta-spamfilter';
|
||||
export const contextMenuID_Summarize = 'mzta-summarize';
|
||||
export const contextMenuID_Translate = 'mzta-translate';
|
||||
export const contextMenuIconsPath = {
|
||||
[contextMenuID_GetCalendarEvent]: 'moz-extension:images/context_menu/getcalendarevent.png',
|
||||
[contextMenuID_GetCalendarEventFromClipboard]: 'moz-extension:images/context_menu/getcalendareventfromclipboard.png',
|
||||
[contextMenuID_GetTask]: 'moz-extension:images/context_menu/gettask.png',
|
||||
[contextMenuID_AddTags]: 'moz-extension:images/context_menu/autotags.png',
|
||||
[contextMenuID_Spamfilter]: 'moz-extension:images/context_menu/spamfilter.png',
|
||||
[contextMenuID_Summarize]: 'moz-extension:images/context_menu/summarize.png',
|
||||
|
|
@ -43,6 +49,9 @@ export const contextMenuIconsPath = {
|
|||
|
||||
// Map from special prompt IDs to context menu IDs
|
||||
export const specialPromptToContextMenuID = {
|
||||
'prompt_get_calendar_event': contextMenuID_GetCalendarEvent,
|
||||
'prompt_get_calendar_event_from_clipboard': contextMenuID_GetCalendarEventFromClipboard,
|
||||
'prompt_get_task': contextMenuID_GetTask,
|
||||
'prompt_add_tags': contextMenuID_AddTags,
|
||||
'prompt_spamfilter': contextMenuID_Spamfilter,
|
||||
'prompt_summarize': contextMenuID_Summarize,
|
||||
|
|
|
|||
|
|
@ -22,12 +22,10 @@ export const customMenuIcons = [
|
|||
'adventure-game.png',
|
||||
'airport.png',
|
||||
'alert-sign.png',
|
||||
'apple.png',
|
||||
'calendar.png',
|
||||
'cash.png',
|
||||
'clapboard.png',
|
||||
'clock.png',
|
||||
'coffee.png',
|
||||
'coins.png',
|
||||
'copywriting.png',
|
||||
'customer-service.png',
|
||||
|
|
@ -39,6 +37,7 @@ export const customMenuIcons = [
|
|||
'express-delivery.png',
|
||||
'flammable.png',
|
||||
'home.png',
|
||||
'idea.png',
|
||||
'info.png',
|
||||
'invoice.png',
|
||||
'justice-scale.png',
|
||||
|
|
@ -46,14 +45,15 @@ export const customMenuIcons = [
|
|||
'love-letter.png',
|
||||
'policeman.png',
|
||||
'printer.png',
|
||||
'profit.png',
|
||||
'puzzle-game.png',
|
||||
'radiation-hazard.png',
|
||||
'receipt.png',
|
||||
'recycle-sign.png',
|
||||
'science.png',
|
||||
'scissors.png',
|
||||
'send.png',
|
||||
'star.png',
|
||||
'statistics.png',
|
||||
'start-up.png',
|
||||
'sticky-notes.png',
|
||||
'target.png',
|
||||
'thermometer.png',
|
||||
|
|
|
|||