Prettier settings tweaks
Changes prettier.io/playground/ to have 4 space indentation, and parens in all arrow functions.
什么是Prettier settings tweaks?
Prettier settings tweaks是由ryanpcmcquen开发的Chrome扩展程序,该扩展的主要功能是“Changes prettier.io/playground/ to have 4 space indentation, and parens in all arrow functions.”。
扩展截图
下载Prettier settings tweaks扩展crx文件
下载Prettier settings tweaks扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
Changes https://prettier.io/playground/ to have 4 space indentation by default, and parens in all arrow functions.
Open source, of course:
https://github.com/ryanpcmcquen/PrettierSettingsTweaks.js 扩展基本信息
| 名称 | |
| ID | mfhopncginlfelebekdadjamddkadaoo |
| 官方URL | https://chromewebstore.google.com/detail/prettier-settings-tweaks/mfhopncginlfelebekdadjamddkadaoo |
| 简介 | Changes prettier.io/playground/ to have 4 space indentation, and parens in all arrow functions. |
| 文件大小 | 9.66 KB |
| 安装次数 | 56 |
| 当前版本 | 0.5.0 |
| 更新时间 | 2022-04-18 |
| 上架时间 | 2019-01-23 |
| 评分 | 5.00/5 共1次评分 |
| 开发者 | ryanpcmcquen |
| 电子邮箱 | [email protected] |
| 付费类型 | free |
| 扩展官网 | https://github.com/ryanpcmcquen/PrettierSettingsTweaks.js |
| 支持的语言 | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 2,
"name": "Prettier settings tweaks",
"description": "Changes prettier.io\/playground\/ to have 4 space indentation, and parens in all arrow functions.",
"version": "0.5.0",
"content_scripts": [
{
"run_at": "document_end",
"matches": [
"https:\/\/prettier.io\/",
"https:\/\/prettier.io\/*"
],
"js": [
"PrettierSettingsTweaks.js"
]
}
]
} | |