Date filters for Gmail

Filter mails based on today, yesterday, current week and last week

ما هو Date filters for Gmail؟

Date filters for Gmail هو إضافة Chrome تم تطويرها بواسطة http://maheshsubramaniya.com، والميزة الرئيسية لها هي "Filter mails based on today, yesterday, current week and last week".

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

screenshot
screenshot

تحميل ملف CRX للإضافة Date filters for Gmail

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

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

                        This is not actively maintained and thank you for all the supporters & users. Latest Gmail update may have broken this plugin.

-------------------------
Patch for bugs: v1.3.1:
Fixed few bugs reported by users in v1.3.1

------------------------

Patch for bugs: v1.3:
Fixed few bugs reported by users in v1.3

------------------------
A plugin to filter mails based on date. Just filter mails by one click instead of writing a long serach query. Currently plugin supports following filter


Latest Features v1.2:

* Adding Custom actions upto 3 actions
* Include / Exclude Sent items, trash etc.,

--------------------
* Today's mail
* Yesterday's mail
* Current Week
* Last Week mail                    

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

الاسم Date filters for Gmail Date filters for Gmail
ID ingccfmdangdapfhfmnhicpmfbofhhlo
عنوان URL الرسمي https://chrome.google.com/webstore/detail/date-filters-for-gmail/ingccfmdangdapfhfmnhicpmfbofhhlo
الوصف Filter mails based on today, yesterday, current week and last week
حجم الملف 115 KB
عدد التثبيتات 1,000
النسخة الحالية 1.3.1
آخر تحديث 2019-10-31
تاريخ النشر 2019-10-31
تقييم 2.75/5 مجموع تقييمات 8
المطور http://maheshsubramaniya.com
نوع الدفع free
موقع الإضافة http://www.maheshsubramaniya.com/article/gmail-date-actions-chrome-plugin.html
عنوان صفحة المساعدة http://www.maheshsubramaniya.com/article/gmail-date-actions-chrome-plugin.html
اللغات المدعومة en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Date filters for Gmail",
    "version": "1.3.1",
    "description": "Filter mails based on today, yesterday, current week and last week",
    "author": "Mahesh Subramaniya",
    "homepage_url": "http:\/\/www.maheshsubramaniya.com\/article\/gmail-date-actions-chrome-plugin.html",
    "icons": {
        "16": "resources\/icon16.png",
        "128": "resources\/icon128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/mail.google.com\/*",
                "https:\/\/mail.google.com\/*",
                "https:\/\/inbox.google.com\/*",
                "http:\/\/inbox.google.com\/*"
            ],
            "js": [
                "lib\/angular.min.js",
                "lib\/jquery.min.js",
                "lib\/jaadi-1.0.js",
                "lib\/storage.jaadi.js",
                "src\/background.js"
            ],
            "run_at": "document_start"
        }
    ],
    "permissions": [
        "tabs",
        "storage",
        "http:\/\/mail.google.com\/*",
        "https:\/\/mail.google.com\/*",
        "http:\/\/inbox.google.com\/*",
        "https:\/\/inbox.google.com\/*"
    ],
    "options_page": "src\/options.html"
}