Timezone Clocks
Display Multibple Timezone at once
Timezone Clocks क्या है?
Timezone Clocks ryoya.kawai द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Display Multibple Timezone at once"।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Timezone Clocks एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ 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 } |