Gmail Date Time Formatter
Set the format of the date and time for mails in your inbox as you want
Gmail Date Time Formatter란 무엇입니까?
Gmail Date Time Formatter은(는) https://doyunkim.com에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Set the format of the date and time for mails in your inbox as you want"입니다.
확장 프로그램 스크린샷
Gmail Date Time Formatter 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
Gmail Date Time Formatter You can see the date and time in Inbox the way you want. ### Update: Unnecessary permission request (tabs) is removed (ver. 1.21) ### ### Now you can use this with different locale! (ver. 1.20) ### ### Now you can use this with the new version of Inbox! (ver. 1.12)### This extension support custom format so you can change the date and time as you want. This extension supports custom format. The format follows moment.js format. (https://momentjs.com/docs/) In the option page, you set the format string, for example, YYYY-MM-DD. Then, the date/time column of gmail list is shown in the form.
확장 프로그램 기본 정보
이름 | Gmail Date Time Formatter |
ID | nkmaeogddfijadboccpafnmhkjhidgeb |
공식 URL | https://chromewebstore.google.com/detail/gmail-date-time-formatter/nkmaeogddfijadboccpafnmhkjhidgeb |
설명 | Set the format of the date and time for mails in your inbox as you want |
파일 크기 | 971 KB |
설치 횟수 | 2,204 |
현재 버전 | 1.21 |
최근 업데이트 | 2022-02-05 |
출시 날짜 | 2018-09-20 |
평점 | 3.79/5 총 19 개의 평점 |
개발자 | https://doyunkim.com |
이메일 | [email protected] |
결제 유형 | free |
지원되는 언어 | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Gmail Date Time Formatter", "description": "Set the format of the date and time for mails in your inbox as you want", "version": "1.21", "permissions": [ "storage" ], "browser_action": { "default_icon": { "128": "icon128.png", "16": "icon16.png", "32": "icon32.png", "48": "icon48.png" } }, "icons": { "128": "icon128.png", "16": "icon16.png", "32": "icon32.png", "48": "icon48.png" }, "options_page": "options.html", "short_name": "Gmail Date Time Formatter", "content_scripts": [ { "all_frames": false, "matches": [ "https:\/\/mail.google.com\/*" ], "js": [ "js\/jquery-3.3.1.min.js", "js\/mutation-summary.min.js", "js\/moment-with-locales.js", "js\/myscripts.js" ], "run_at": "document_idle" } ] } |