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ファイルをダウンロード

Prettier Chrome Extension拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。

拡張機能の使用方法

                        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"
}