Prettier Chrome Extension

prettier chrome extension

Prettier Chrome Extension란 무엇입니까?

Prettier Chrome Extension은(는) Unknown에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "prettier chrome extension"입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot
screenshot
screenshot

Prettier Chrome Extension 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        Format your JavaScript code using the Prettier library on any editable element (`textarea` and `input[type=text]`, for now).


sebmarkbage(https://twitter.com/sebmarkbage/status/843866641515536384) had an idea for a tool that will format your JavaScript code that is not in your code editor/IDE. This is the implementation I came up with.

Usage

1. Install
2. Ensure your code fences are defined as JS blocks (```js var abc = 123; ```)
3. Format your code via a handy context menu.

Options

All the options that are defined in Prettier API are available to be set using the extensions options page.                    

확장 프로그램 기본 정보

이름 Prettier Chrome Extension Prettier Chrome Extension
ID khnhpkjhoogpgnbhagabcnamppfohhjd
공식 URL https://chromewebstore.google.com/detail/prettier-chrome-extension/khnhpkjhoogpgnbhagabcnamppfohhjd
설명 prettier chrome extension
파일 크기 3.36 MB
설치 횟수 1,045
현재 버전 0.1.0
최근 업데이트 2017-03-23
출시 날짜 2017-03-23
평점 4.00/5 총 2 개의 평점
개발자 Unknown
결제 유형 free
확장 프로그램 웹 사이트 https://github.com/jamez14/prettier-chrome-extension
지원되는 언어 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Prettier Chrome Extension",
    "icons": {
        "16": "icon_16x16.png",
        "32": "icon_32x32.png",
        "48": "icon_48x48.png",
        "128": "icon_128x128.png"
    },
    "background": {
        "scripts": [
            "background.bundle.js"
        ],
        "persistent": true
    },
    "permissions": [
        "contextMenus",
        "background",
        "storage"
    ],
    "options_ui": {
        "page": "options.html",
        "chrome_style": true
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "inject.bundle.js"
            ],
            "run_at": "document_end"
        }
    ],
    "manifest_version": 2,
    "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'",
    "description": "prettier chrome extension",
    "version": "0.1.0"
}