Prettier Chrome Extension
prettier chrome extension
¿Qué es Prettier Chrome Extension?
Prettier Chrome Extension es una extensión de Chrome desarrollada por Unknown, y su función principal es "prettier chrome extension".
Capturas de Pantalla de la Extensión
Descargar Archivo CRX de la Extensión Prettier Chrome Extension
Descarga archivos de extensión Prettier Chrome Extension en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.
Instrucciones de Uso de la Extensión
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.
Información Básica de la Extensión
Nombre | Prettier Chrome Extension |
ID | khnhpkjhoogpgnbhagabcnamppfohhjd |
URL Oficial | https://chromewebstore.google.com/detail/prettier-chrome-extension/khnhpkjhoogpgnbhagabcnamppfohhjd |
Descripción | prettier chrome extension |
Tamaño del Archivo | 3.36 MB |
Cantidad de Instalaciones | 1,045 |
Versión Actual | 0.1.0 |
Última Actualización | 2017-03-23 |
Fecha de Publicación | 2017-03-23 |
Calificación | 4.00/5 Total de 2 Calificaciones |
Desarrollador | Unknown |
Tipo de Pago | free |
Sitio Web de la Extensión | https://github.com/jamez14/prettier-chrome-extension |
Idiomas Soportados | 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": [ " |