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.”。

擴展截圖

screenshot
screenshot
screenshot

下載Date picker extension擴展crx文件

下載Date picker extension擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        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 Date picker extension
ID dleghnfkndpddppflgfcajfbaejnnoem
官方網址 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"
}