GMail Unread

Shows an 'Unread' button to filter emails by 'Unread' status.

ما هو GMail Unread؟

GMail Unread هو إضافة Chrome تم تطويرها بواسطة Dillon Hafer، والميزة الرئيسية لها هي "Shows an 'Unread' button to filter emails by 'Unread' status.".

لقطات شاشة التمديد

screenshot

تحميل ملف CRX للإضافة GMail Unread

قم بتنزيل ملفات الامتداد GMail Unread بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.

تعليمات استخدام التمديد

                                            

معلومات أساسية عن التمديد

الاسم GMail Unread GMail Unread
ID fnjpldipmbkkjobnhfhdngjljhlabieb
عنوان URL الرسمي https://chromewebstore.google.com/detail/gmail-unread/fnjpldipmbkkjobnhfhdngjljhlabieb
الوصف Shows an 'Unread' button to filter emails by 'Unread' status.
حجم الملف 52.41 KB
عدد التثبيتات 80
النسخة الحالية 1.0
آخر تحديث 2015-06-08
تاريخ النشر 2015-06-08
تقييم 5.00/5 مجموع تقييمات 1
المطور Dillon Hafer
نوع الدفع free
موقع الإضافة https://github.com/dillonhafer/gmail-unread
اللغات المدعومة en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "GMail Unread",
    "version": "1.0",
    "description": "Shows an 'Unread' button to filter emails by 'Unread' status.",
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "page_action": {
        "default_icon": "icon-19.png",
        "default_title": "Show unread",
        "default_popup": "popup.html"
    },
    "permissions": [
        "declarativeContent"
    ],
    "content_scripts": [
        {
            "js": [
                "unread.js"
            ],
            "matches": [
                "https:\/\/mail.google.com\/*"
            ],
            "run_at": "document_idle",
            "all_frames": false
        }
    ],
    "icons": {
        "48": "icon-48.png",
        "128": "icon-128.png"
    },
    "manifest_version": 2
}