لتجربة الآلاف من الإضافات المتوفرة هنا، نزّل متصفح موزيلا فَيَرفُكس مجانًا. المتصفح الأسرع والأكثر أمانًا في عالم الإنترنت.

Close

مرحبا بك في إضافات فَيَرفُكس.

اختر من بين الآلاف من المميزات والمظاهر الإضافية واجعل فيرفُكس ملكًا لك.

Close

في الطريق، أثناء تنقلك؟

ألقِ نظرة على موقع إضافات الهواتف الذكية.

Close

Computerix

معلومات عنّي

معلومات المطور
الاسم Computerix
مُستخدم منذ إبريل 6, 2012
عدد الإضافات التي طورتها 0 إضافة/إضافات
معدّل التقييم من مطوري الإضافات بلا تقييم حتى الآن

تعليقاتي

Mailbox Alert

مقيمة بـ 5 من 5 نجوم

Great Add-on. I am using it with growlnotify on a Mac as well (command: "/path/to/shellscript/growlNotify.sh" %subject %sender). As variables containing German special characters (äöü etc.) did not show in the growl alert, in the shell script I added a conversion from iso-8859-15 (my thunderbird setting) to utf-8:

BOF code:
#!/bin/sh
# thunderbird_wrapper.sh
# v1.0
# David LaPorte
# 09/23/05

#SUBJECT="$1"
#SENDER="$2"

SUBJECT=$(echo $1 | iconv -f iso-8859-15 -t utf-8)
SENDER=$(echo $2 | iconv -f iso-8859-15 -t utf-8)

APP="Thunderbird"
# Location of growlnotify (located in Growl distribution)
# You will need to move it from the DMG to a local path
GROWLNOTIFY=/usr/local/bin/growlnotify
$GROWLNOTIFY -p High -a "$APP" -t "$SUBJECT" -m "From: $SENDER"

EOF code
(save as UFT-8 file and make executable)

Hope this is useful.

Suggestion: It would be great to add a feature that the mailbox alert stays on the screen permanently after a certain period of inactivity (30s for instance) just like in growl.

هذا التعليق كان على إصدارة سابقة من هذه الإضافة (0.16.1)