Gmail Date Time Formatter
Set the format of the date and time for mails in your inbox as you want
Gmail Date Time Formatter क्या है?
Gmail Date Time Formatter https://doyunkim.com द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Set the format of the date and time for mails in your inbox as you want"।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Gmail Date Time Formatter एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
Gmail Date Time Formatter You can see the date and time in Inbox the way you want. ### Update: Unnecessary permission request (tabs) is removed (ver. 1.21) ### ### Now you can use this with different locale! (ver. 1.20) ### ### Now you can use this with the new version of Inbox! (ver. 1.12)### This extension support custom format so you can change the date and time as you want. This extension supports custom format. The format follows moment.js format. (https://momentjs.com/docs/) In the option page, you set the format string, for example, YYYY-MM-DD. Then, the date/time column of gmail list is shown in the form.
एक्सटेंशन की मूल जानकारी
नाम | Gmail Date Time Formatter |
ID | nkmaeogddfijadboccpafnmhkjhidgeb |
आधिकारिक URL | https://chromewebstore.google.com/detail/gmail-date-time-formatter/nkmaeogddfijadboccpafnmhkjhidgeb |
विवरण | Set the format of the date and time for mails in your inbox as you want |
फ़ाइल का आकार | 971 KB |
स्थापना संख्या | 2,204 |
वर्तमान संस्करण | 1.21 |
अंतिम अपडेट | 2022-02-05 |
प्रकाशन तिथि | 2018-09-20 |
रेटिंग | 3.79/5 कुल 19 रेटिंग्स |
डेवलपर | https://doyunkim.com |
ईमेल | [email protected] |
भुगतान के प्रकार | free |
समर्थित भाषाएँ | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Gmail Date Time Formatter", "description": "Set the format of the date and time for mails in your inbox as you want", "version": "1.21", "permissions": [ "storage" ], "browser_action": { "default_icon": { "128": "icon128.png", "16": "icon16.png", "32": "icon32.png", "48": "icon48.png" } }, "icons": { "128": "icon128.png", "16": "icon16.png", "32": "icon32.png", "48": "icon48.png" }, "options_page": "options.html", "short_name": "Gmail Date Time Formatter", "content_scripts": [ { "all_frames": false, "matches": [ "https:\/\/mail.google.com\/*" ], "js": [ "js\/jquery-3.3.1.min.js", "js\/mutation-summary.min.js", "js\/moment-with-locales.js", "js\/myscripts.js" ], "run_at": "document_idle" } ] } |