Localise Times

Detects times given with time zone abbreviations, and converts them to your local time.

Localise Times란 무엇입니까?

Localise Times은(는) QOAL에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Detects times given with time zone abbreviations, and converts them to your local time."입니다.

확장 프로그램 스크린샷

screenshot
screenshot

Localise Times 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        This addon detects and converts numeric times which include a timezone abbreviations (e.g. UTC, PDT, CEST) and converts them to your local time. Converted times will have a dotted line below them, and you can hover over them to see the original text.
Clicking a converted time will show the original text again.
Examples of time that'll be converted: 7pm PDT, 21:34 cest, 9:00 am UTC + 1
Handles ranges of times too, such as 7-9pm CEST / 10am - 6pm PT.

You can use the menu button to localise times that do not include a time zone abbreviation.
Simply click the icon, and select the time zone used by the times on the page.
There's also a sandbox mode, where you can enter any text you like and convert times within it to a chosen timezone.                    

확장 프로그램 기본 정보

이름 Localise Times Localise Times
ID lfapgjogceelfpildippecdikjnljkek
공식 URL https://chromewebstore.google.com/detail/localise-times/lfapgjogceelfpildippecdikjnljkek
설명 Detects times given with time zone abbreviations, and converts them to your local time.
파일 크기 62.54 KB
설치 횟수 212
현재 버전 1.40.7
최근 업데이트 2024-02-12
출시 날짜 2020-05-14
평점 5.00/5 총 8 개의 평점
개발자 QOAL
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://github.com/QOAL/localisetime
도움말 페이지 URL https://github.com/QOAL/localisetime/issues
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "__MSG_extensionName__",
    "version": "1.40.7",
    "description": "__MSG_extensionDescription__",
    "icons": {
        "16": "icons\/icon_16.png",
        "32": "icons\/icon_32.png",
        "48": "icons\/icon_48.png",
        "64": "icons\/icon_64.png",
        "96": "icons\/icon_96.png",
        "192": "icons\/icon_192.png"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*\/*"
            ],
            "run_at": "document_end",
            "all_frames": true,
            "js": [
                "popup\/tzInfo.js",
                "localisetimes.js"
            ]
        }
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "static.css"
            ],
            "matches": [
                ""
            ]
        }
    ],
    "action": {
        "default_icon": {
            "16": "icons\/icon_16.png",
            "19": "icons\/icon_19.png",
            "32": "icons\/icon_32.png",
            "38": "icons\/icon_38.png",
            "48": "icons\/icon_48.png",
            "64": "icons\/icon_64.png"
        },
        "default_title": "__MSG_extensionName__",
        "default_popup": "popup\/popup.html"
    },
    "background": {
        "service_worker": "background.js"
    },
    "options_ui": {
        "page": "popup\/popup.html"
    },
    "permissions": [
        "activeTab",
        "storage",
        "tabs",
        "scripting"
    ],
    "host_permissions": [
        ""
    ],
    "default_locale": "en"
}