Date picker extension
Add a calendar to any web page.
Date picker extension क्या है?
Date picker extension @KiwiCoder द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Add a calendar to any web page."।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Date picker extension एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
This extension adds a calendar to any web page. Activate the date picker by double-clicking in a text field, then click on a date to select it into the text field. Alternatively click on the date picker icon in the extensions panel then click on a date to copy it to the clipboard. Date format can be set in the options page. If it doesn't work for you please let me know so I can improve it. You can find me on twitter as @KiwiCoder. There is a small write-up about this extension here: https://github.com/EdGuiness/date-picker/wiki/What-I-learned-from-writing-my-first-Chrome-extension
एक्सटेंशन की मूल जानकारी
नाम | Date picker extension |
ID | dleghnfkndpddppflgfcajfbaejnnoem |
आधिकारिक URL | https://chromewebstore.google.com/detail/date-picker-extension/dleghnfkndpddppflgfcajfbaejnnoem |
विवरण | Add a calendar to any web page. |
फ़ाइल का आकार | 161 KB |
स्थापना संख्या | 491 |
वर्तमान संस्करण | 0.0.0.8 |
अंतिम अपडेट | 2016-04-13 |
प्रकाशन तिथि | 2016-04-13 |
रेटिंग | 3.40/5 कुल 5 रेटिंग्स |
डेवलपर | @KiwiCoder |
भुगतान के प्रकार | free |
समर्थित भाषाएँ | en-US |
manifest.json | |
{ "update_url": "http:\/\/clients2.google.com\/service\/update2\/crx", "name": "Date picker extension", "version": "0.0.0.8", "manifest_version": 2, "description": "Add a calendar to any web page.", "browser_action": { "default_icon": "icon16.png", "default_popup": "popupdatepicker.html" }, "content_scripts": [ { "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "js": [ "jquery.js", "jquery-ui-1.9.2.custom.js", "main.js" ], "css": [ "jquery-ui-1.9.2.custom.min.css", "datepicker.css" ] } ], "web_accessible_resources": [ "images\/*" ], "icons": { "16": "icon16.png", "48": "icon48.png", "128": "icon128.png" }, "background": { "page": "background.html" }, "permissions": [ "clipboardWrite" ], "options_page": "options.html" } |