Date picker extension
Add a calendar to any web page.
Date picker extension là gì?
Date picker extension là một tiện ích mở rộng Chrome được phát triển bởi @KiwiCoder, và tính năng chính của nó là "Add a calendar to any web page.".
Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng
Tải xuống tệp CRX của tiện ích mở rộng Date picker extension
Tải xuống các tệp mở rộng Date picker extension dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.
Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng
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
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | Date picker extension |
ID | dleghnfkndpddppflgfcajfbaejnnoem |
URL Chính Thức | https://chromewebstore.google.com/detail/date-picker-extension/dleghnfkndpddppflgfcajfbaejnnoem |
Mô tả | Add a calendar to any web page. |
Kích Thước Tệp | 161 KB |
Số Lần Cài Đặt | 491 |
Phiên Bản Hiện Tại | 0.0.0.8 |
Cập Nhật Lần Cuối | 2016-04-13 |
Ngày Phát Hành | 2016-04-13 |
Đánh Giá | 3.40/5 Tổng số 5 Đánh Giá |
Nhà Phát Triển | @KiwiCoder |
Loại Thanh Toán | free |
Ngôn Ngữ Được Hỗ Trợ | 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" } |