Date filters for Gmail
Filter mails based on today, yesterday, current week and last week
Was ist Date filters for Gmail?
Date filters for Gmail ist eine Chrome-Erweiterung, die von http://maheshsubramaniya.com entwickelt wurde, und ihr Hauptmerkmal ist "Filter mails based on today, yesterday, current week and last week".
Erweiterungsscreenshots
Date filters for Gmail-Erweiterungs-CRX-Datei herunterladen
Laden Sie Date filters for Gmail-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
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 Grundlegende Informationen zur Erweiterung
| Name | |
| ID | ingccfmdangdapfhfmnhicpmfbofhhlo |
| Offizielle URL | https://chrome.google.com/webstore/detail/date-filters-for-gmail/ingccfmdangdapfhfmnhicpmfbofhhlo |
| Beschreibung | Filter mails based on today, yesterday, current week and last week |
| Dateigröße | 115 KB |
| Installationsanzahl | 1,000 |
| Aktuelle Version | 1.3.1 |
| Letztes Update | 2019-10-31 |
| Veröffentlichungsdatum | 2019-10-31 |
| Bewertung | 2.75/5 Insgesamt 8 Bewertungen |
| Entwickler | http://maheshsubramaniya.com |
| Zahlungsart | free |
| Erweiterungswebsite | http://www.maheshsubramaniya.com/article/gmail-date-actions-chrome-plugin.html |
| Hilfeseite URL | http://www.maheshsubramaniya.com/article/gmail-date-actions-chrome-plugin.html |
| Unterstützte Sprachen | 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"
} | |