Timezone Converter for Google Calendar
This extension helps the user easily convert between timezones while using Google Calendar.
Timezone Converter for Google Calendar क्या है?
Timezone Converter for Google Calendar nik.advani16 द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "This extension helps the user easily convert between timezones while using Google Calendar."।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Timezone Converter for Google Calendar एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
This extension helps the user easily convert between timezones while using Google Calendar.
एक्सटेंशन की मूल जानकारी
नाम | Timezone Converter for Google Calendar |
ID | llpjnojfbpbeccalkgbjhlohmmkchljp |
आधिकारिक URL | https://chromewebstore.google.com/detail/timezone-converter-for-go/llpjnojfbpbeccalkgbjhlohmmkchljp |
विवरण | This extension helps the user easily convert between timezones while using Google Calendar. |
फ़ाइल का आकार | 12.91 KB |
स्थापना संख्या | 212 |
वर्तमान संस्करण | 0.2 |
अंतिम अपडेट | 2022-08-13 |
प्रकाशन तिथि | 2022-08-10 |
रेटिंग | 5.00/5 कुल 3 रेटिंग्स |
डेवलपर | nik.advani16 |
ईमेल | [email protected] |
भुगतान के प्रकार | free |
समर्थित भाषाएँ | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "Timezone Converter for Google Calendar", "version": "0.2", "web_accessible_resources": [ { "resources": [ "icon.png" ], "matches": [ "https:\/\/calendar.google.com\/*" ] } ], "action": { "default_icon": "icon.png", "default_popup": "popup.html" }, "content_scripts": [ { "matches": [ "https:\/\/calendar.google.com\/*" ], "js": [ "content.js" ] } ], "background": { "service_worker": "background.js" }, "permissions": [ "storage" ] } |