Timezone Clocks
Display Multibple Timezone at once
Timezone Clocksとは何ですか?
Timezone Clocksはryoya.kawaiによって開発されたChromeの拡張機能で、その主な機能は「Display Multibple Timezone at once」です。
拡張機能のスクリーンショット
Timezone Clocks拡張機能のCRXファイルをダウンロード
Timezone Clocks拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
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 |
Eメール | [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 } |