DateTime Formatter
Format all the date and time in current page to specified datetime format
DateTime Formatter란 무엇입니까?
DateTime Formatter은(는) acesmndr에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Format all the date and time in current page to specified datetime format"입니다.
확장 프로그램 스크린샷
DateTime Formatter 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
Convert all datetime in a page to a required format with a click of a button. Logs tend to have date and time in formats that are hard to read. This extension helps you to convert those unreadable(hard to interpret) dates in your logging sites to the format and timezone that you define. This is a light weight software that will save countless hours of your debugging time figuring out the exact datetime in your logs in a glance. Logs are just an example. This extension helps you convert dates in all websites and is not just limited to logging websites. Why? • Saves time • Non obtrusive: Only converts the date in the pages you visit when you click the extension icon • Light weight • Date Conversions done are cosmetic change which can be reverted by a simple page refresh. • Customizable Settings: Has a settings page where you can customize it as per your requirements • Supports a wide range of datetime formats • Doesn't allocate memory when not in use • Vanilla javascript: No thirdparty scripts included • Free to use
확장 프로그램 기본 정보
이름 | DateTime Formatter |
ID | ijkgnihgjeomlifgpcodfaegifehahem |
공식 URL | https://chromewebstore.google.com/detail/datetime-formatter/ijkgnihgjeomlifgpcodfaegifehahem |
설명 | Format all the date and time in current page to specified datetime format |
파일 크기 | 34.41 KB |
설치 횟수 | 100 |
현재 버전 | 1.2.1 |
최근 업데이트 | 2020-11-24 |
출시 날짜 | 2020-06-02 |
평점 | 3.00/5 총 1 개의 평점 |
개발자 | acesmndr |
이메일 | [email protected] |
결제 유형 | free |
확장 프로그램 웹 사이트 | https://github.com/Acesmndr/datetime-formatter-chrome-extension |
지원되는 언어 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "DateTime Formatter", "version": "1.2.1", "description": "Format all the date and time in current page to specified datetime format", "permissions": [ "activeTab", "storage", "https:\/\/stackpath.bootstrapcdn.com\/bootstrap\/4.4.1\/css\/bootstrap.min.css" ], "browser_action": { "default_title": "DateTime Formatter", "default_icon": "assets\/icons\/icon128.png" }, "icons": { "16": "assets\/icons\/icon16.png", "48": "assets\/icons\/icon48.png", "128": "assets\/icons\/icon128.png" }, "options_page": "options.html", "background": { "scripts": [ "assets\/background.js" ], "persistent": false } } |