Unix Converter

An easy-to-use all-in-one Unix Epoch timestamp converter.

Unix Converter란 무엇입니까?

Unix Converter은(는) isaacoram에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "An easy-to-use all-in-one Unix Epoch timestamp converter."입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot
screenshot

Unix Converter 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        Unix Converter allows you to do nearly everything you can imagine with Unix Epoch timestamps.

Features:
- Convert any number into a human-readable date from any website (even iframes!) by holding CTRL and highlighting it (can be disabled).
- A (disabled unless turned on) context menu version of the above feature (conversion). Enable it in the settings of the popup and highlight a number and then right click the selection. Clicking on the menu item copies the conversion to your clipboard.
- Display the current Unix Epoch timestamp (in seconds, milliseconds, and human readable formats) with live changes and an easy click to copy.
- Automatically picks the best format to fetch the timestamp in (supports seconds/milliseconds/microseconds/nanoseconds) or you can even choose the specific fetching format in the popup settings.
- Change the format that the human-readable date will display.
- Change the timezone that the date will display in (leave blank for your timezone).
- Convert specific Unix Epoch timestamp within the popup window.
- Convert human-readable dates to Unix Epoch timestamp within the popup window.

Future Plans:
- Add a history feature so you can see past conversions and where/when they were converted (this will only be stored locally, and will be able to be turned off).
- Add ability to use custom CSS for converting on a website.
- Save/Load/Clear settings for easier transitions between browsers/computers.
- Add better french number fetching support.
- Add other language support (currently only displays in English).

Changelog v1.2.0
- Full rework of the popup UI to include the logo at the top instead of text, tabs for smaller popup window, changes to the switch for toggling features, and more!
- Added option to turn off CTRL conversion

Changelog v1.2.1
- Fixed Firefox regex negative lookbehind error.

Changelog v1.2.2
- Fixed suggested key being a common key for cycling.

Below is the URL to the Github repository.
https://github.com/IsaacAKAJupiter/unixconverter-extension                    

확장 프로그램 기본 정보

이름 Unix Converter Unix Converter
ID djidbebmiaoojfljhmofnihanheggbap
공식 URL https://chrome.google.com/webstore/detail/unix-converter/djidbebmiaoojfljhmofnihanheggbap
설명 An easy-to-use all-in-one Unix Epoch timestamp converter.
파일 크기 555 KB
설치 횟수 101
현재 버전 1.2.2
최근 업데이트 2020-02-03
출시 날짜 2020-02-03
평점 5.00/5 총 1 개의 평점
개발자 isaacoram
결제 유형 free
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Unix Converter",
    "short_name": "Unix Convert",
    "description": "An easy-to-use all-in-one Unix Epoch timestamp converter.",
    "author": "Isaac Oram",
    "version": "1.2.2",
    "manifest_version": 2,
    "permissions": [
        "storage",
        "contextMenus",
        "tabs",
        "clipboardWrite",
        "http:\/\/*\/",
        "https:\/\/*\/"
    ],
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "dayjs.js",
                "browser-polyfill.min.js",
                "convert.js",
                "content.js"
            ],
            "css": [
                "main.css"
            ],
            "all_frames": true
        }
    ],
    "background": {
        "scripts": [
            "browser-polyfill.min.js",
            "dayjs.js",
            "convert.js",
            "background.js"
        ]
    },
    "browser_action": {
        "default_popup": "popup.html",
        "default_title": "Unix Converter"
    },
    "web_accessible_resources": [
        "timezones.json"
    ],
    "icons": {
        "16": "images\/logo16.png",
        "48": "images\/logo48.png",
        "96": "images\/logo96.png",
        "128": "images\/logo128.png"
    },
    "commands": {
        "cycle-fetch-format": {
            "suggested_key": {
                "default": "Alt+Shift+0"
            },
            "description": "Cycles the fetch format setting."
        }
    }
}