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.
扩展基本信息
名称 | Prettier |
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" } ] } |