Prettier
Prettier all the things.
What is Prettier?
Prettier is a Chrome extension developed by https://prettier.io, and its main feature is "Prettier all the things.".
Extension Screenshots
Download Prettier Extension CRX File
Download Prettier extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
For now only StackOverflow and GitHub.
Extension Basic Information
Name | Prettier |
ID | fbcfnmplppajblbmdehballiekfgdkhp |
Official URL | https://chromewebstore.google.com/detail/prettier/fbcfnmplppajblbmdehballiekfgdkhp |
Description | Prettier all the things. |
File Size | 3.79 MB |
Installation Count | 1,087 |
Current Version | 0.0.5 |
Last Updated | 2019-11-27 |
Publish Date | 2019-11-27 |
Rating | 5.00/5 Total 4 Ratings |
Developer | https://prettier.io |
Payment Type | free |
Extension Website | https://prettier.io |
Help Page URL | https://prettier.io |
Supported Languages | 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" } ] } |