Date filters for Gmail
Filter mails based on today, yesterday, current week and last week
Cos'è Date filters for Gmail?
Date filters for Gmail è un'estensione di Chrome sviluppata da http://maheshsubramaniya.com, e la sua funzione principale è "Filter mails based on today, yesterday, current week and last week".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione Date filters for Gmail
Scarica i file di estensione Date filters for Gmail in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
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
Informazioni di Base sull'Estensione
Nome | |
ID | ingccfmdangdapfhfmnhicpmfbofhhlo |
URL Ufficiale | https://chrome.google.com/webstore/detail/date-filters-for-gmail/ingccfmdangdapfhfmnhicpmfbofhhlo |
Descrizione | Filter mails based on today, yesterday, current week and last week |
Dimensione del File | 115 KB |
Conteggio Installazioni | 1,000 |
Versione Corrente | 1.3.1 |
Ultimo Aggiornamento | 2019-10-31 |
Data di Pubblicazione | 2019-10-31 |
Valutazione | 2.75/5 Totale 8 Valutazioni |
Sviluppatore | http://maheshsubramaniya.com |
Tipo di Pagamento | free |
Sito Web dell'Estensione | http://www.maheshsubramaniya.com/article/gmail-date-actions-chrome-plugin.html |
URL della Pagina di Aiuto | http://www.maheshsubramaniya.com/article/gmail-date-actions-chrome-plugin.html |
Lingue Supportate | 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" } |