Timezone Clocks
Display Multibple Timezone at once
Timezone Clocks란 무엇입니까?
Timezone Clocks은(는) ryoya.kawai에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Display Multibple Timezone at once"입니다.
확장 프로그램 스크린샷
Timezone Clocks 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
Allow you to display clocks in different timezones up to 8 at once. Also, the app can change the time graphically, so easy to know the time of in different places. Scheduling Teleconference in several timezones for example, sometimes it is complicated to know what time is it at Place B when Place A is this time. Then trying to see in inversed way, what time is it at Place A when Place B is this time? something like that. With this app, you will be fee to this kind of situation.
확장 프로그램 기본 정보
이름 | Timezone Clocks |
ID | phckpicnefnbafbamoidbemcdlolfoel |
공식 URL | https://chromewebstore.google.com/detail/timezone-clocks/phckpicnefnbafbamoidbemcdlolfoel |
설명 | Display Multibple Timezone at once |
파일 크기 | 146 KB |
설치 횟수 | 632 |
현재 버전 | 1.0.19 |
최근 업데이트 | 2019-03-08 |
출시 날짜 | 2019-03-08 |
평점 | 4.50/5 총 2 개의 평점 |
개발자 | ryoya.kawai |
이메일 | [email protected] |
결제 유형 | free |
확장 프로그램 웹 사이트 | https://blog.ryoyakawai.com |
도움말 페이지 URL | https://github.com/ryoyakawai/timezones-extension/issues |
지원되는 언어 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Timezone Clocks", "version": "1.0.19", "description": "Display Multibple Timezone at once", "permissions": [ "storage", "tabs", "idle" ], "background": { "page": "src\/background.html", "persistent": true }, "web_accessible_resources": [ "src\/scripts\/*" ], "content_scripts": [ { "matches": [ "file:\/\/\/*\/background.html", "file:\/\/\/*\/options.html", "file:\/\/\/*\/popup.html" ], "js": [ "src\/scripts\/inject.js" ], "run_at": "document_start" } ], "browser_action": { "default_popup": "src\/popup.html", "default_icon": { "16": "src\/images\/timezoneclock16.png", "32": "src\/images\/timezoneclock32.png", "48": "src\/images\/timezoneclock48.png", "128": "src\/images\/timezoneclock128.png" } }, "icons": { "16": "src\/images\/timezoneclock16.png", "32": "src\/images\/timezoneclock32.png", "48": "src\/images\/timezoneclock48.png", "128": "src\/images\/timezoneclock128.png" }, "options_page": "src\/options.html", "manifest_version": 2 } |