Date picker extension
Add a calendar to any web page.
Date picker extension란 무엇입니까?
Date picker extension은(는) @KiwiCoder에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Add a calendar to any web page."입니다.
확장 프로그램 스크린샷
Date picker extension 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 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" } |