Date filters for Gmail
Filter mails based on today, yesterday, current week and last week
Date filters for Gmail란 무엇입니까?
Date filters for Gmail은(는) http://maheshsubramaniya.com에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Filter mails based on today, yesterday, current week and last week"입니다.
확장 프로그램 스크린샷
Date filters for Gmail 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 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
확장 프로그램 기본 정보
이름 | |
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 |
도움말 페이지 URL | 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" } |