Short Date Format Fix For Google Calendar™

Changes the short date format in Google Calendar from [month]/[day] to [day]/[month] or the other way around.

Short Date Format Fix For Google Calendar™란 무엇입니까?

Short Date Format Fix For Google Calendar™은(는) Nimblit AB에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Changes the short date format in Google Calendar from [month]/[day] to [day]/[month] or the other way around."입니다.

확장 프로그램 스크린샷

screenshot

Short Date Format Fix For Google Calendar™ 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        In some Google Calendar views (day, week and four days) the date format above the columns is month/day, which is incorrect in many languages, for example Swedish. It helps to change the date format in the settings, but then the long date format will be wrong.

This extension switches the order of day and month in short formatted dates which makes it possible to have correct long and short date formats. 

(It also works the other way around, that is if you have selected a language or a long date format which shows the short date format as day/month, this extension changes the short date format to month/day.)

Fixed in version 1.1: Didn't work when more than one time zones were displayed. Also fixed errors in Swedish: We don't say for example "den oktober 2012", it should be only "oktober 2012".

Fixed in version 1.2: Stopped working on 15 sept 2015 due to google's change of the address of Calendar (from www.google.com/calendar to calendar.google.com/calendar). Sorry for not updating it sooner. You may have to re-enable the extension after this update.                    

확장 프로그램 기본 정보

이름 Short Date Format Fix For Google Calendar™ Short Date Format Fix For Google Calendar™
ID njcpofamadapnjhphiclfjcoppkhglkf
공식 URL https://chromewebstore.google.com/detail/short-date-format-fix-for/njcpofamadapnjhphiclfjcoppkhglkf
설명 Changes the short date format in Google Calendar from [month]/[day] to [day]/[month] or the other way around.
파일 크기 7.74 KB
설치 횟수 308
현재 버전 1.2
최근 업데이트 2015-10-19
출시 날짜 2015-10-18
평점 5.00/5 총 14 개의 평점
개발자 Nimblit AB
결제 유형 free
확장 프로그램 웹 사이트 http://www.nimblit.se/
지원되는 언어 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Short Date Format Fix For Google Calendar\u2122",
    "version": "1.2",
    "manifest_version": 2,
    "description": "Changes the short date format in Google Calendar from [month]\/[day] to [day]\/[month] or the other way around.",
    "content_scripts": [
        {
            "matches": [
                "https:\/\/calendar.google.com\/calendar\/*"
            ],
            "js": [
                "fixDateFormat.js"
            ],
            "run_at": "document_end"
        }
    ],
    "icons": {
        "16": "icon16.png",
        "48": "icon48.png",
        "128": "icon128.png"
    }
}