Prettier
Prettier all the things.
Prettierとは何ですか?
Prettierはhttps://prettier.ioによって開発されたChromeの拡張機能で、その主な機能は「Prettier all the things.」です。
拡張機能のスクリーンショット
Prettier拡張機能のCRXファイルをダウンロード
Prettier拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
For now only StackOverflow and GitHub. 拡張機能の基本情報
| 名前 | |
| ID | fbcfnmplppajblbmdehballiekfgdkhp |
| 公式URL | https://chromewebstore.google.com/detail/prettier/fbcfnmplppajblbmdehballiekfgdkhp |
| 説明 | Prettier all the things. |
| ファイルサイズ | 3.79 MB |
| インストール数 | 1,087 |
| 現在のバージョン | 0.0.5 |
| 最終更新日 | 2019-11-27 |
| 公開日 | 2019-11-27 |
| 評価 | 5.00/5 合計 4 レビュー |
| 開発者 | https://prettier.io |
| 支払い方法 | free |
| 拡張機能のウェブサイト | https://prettier.io |
| ヘルプページのURL | https://prettier.io |
| 対応言語 | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"name": "Prettier",
"version": "0.0.5",
"manifest_version": 2,
"description": "Prettier all the things.",
"homepage_url": "https:\/\/prettier.io",
"icons": {
"16": "icons\/icon16.png",
"48": "icons\/icon48.png",
"128": "icons\/icon128.png"
},
"options_ui": {
"page": "options.html",
"open_in_tab": false
},
"permissions": [
"storage"
],
"content_scripts": [
{
"matches": [
"https:\/\/stackoverflow.com\/*",
"https:\/\/github.com\/*"
],
"js": [
"content.js"
],
"run_at": "document_end"
}
]
} | |