Pretty Gherkin
Open your cucumber feature files written in gherkin in the browser to see them formatted in a human-friendly way.
¿Qué es Pretty Gherkin?
Pretty Gherkin es una extensión de Chrome desarrollada por martin.roddam, y su función principal es "Open your cucumber feature files written in gherkin in the browser to see them formatted in a human-friendly way.".
Capturas de Pantalla de la Extensión
Descargar Archivo CRX de la Extensión Pretty Gherkin
Descarga archivos de extensión Pretty Gherkin 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
INSTALLATION 1. Install extension 2. Tick the 'Allow access to file URLs' checkbox (IMPORTANT) SUPPORT Supports local feature files, and raw files on: - Github - Gitlab - Bitbucket.org Appreciate feedback via the support link and any supporting troublesome mark-up. SUPPORTED FEATURE FILE MARK-UP > Header formatting (Feature / Background / Scenarios) > Feature description formatting > Keyword highlighting (Given / When / Then ...) > Comment formatting > Annotation formatting > Parameter highlighting e.g. > DocString formatting NEW in this release ============================ Support for gitlab, bitbucket.org. NEW in previous release ============================ Better handling of feature file keywords inside comments and doc strings. Performance improvements and bug fixes.
Información Básica de la Extensión
Nombre | Pretty Gherkin |
ID | blemhogdenfkkojlpghcinocbfjheioc |
URL Oficial | https://chromewebstore.google.com/detail/pretty-gherkin/blemhogdenfkkojlpghcinocbfjheioc |
Descripción | Open your cucumber feature files written in gherkin in the browser to see them formatted in a human-friendly way. |
Tamaño del Archivo | 136 KB |
Cantidad de Instalaciones | 3,681 |
Versión Actual | 0.2.5 |
Última Actualización | 2018-01-25 |
Fecha de Publicación | 2018-01-25 |
Calificación | 2.82/5 Total de 17 Calificaciones |
Desarrollador | martin.roddam |
Tipo de Pago | free |
URL de la Página de Ayuda | https://twitter.com/testanalyst |
Idiomas Soportados | en-GB |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Pretty Gherkin", "description": "Open your cucumber feature files written in gherkin in the browser to see them formatted in a human-friendly way.", "version": "0.2.5", "icons": { "48": "images\/icon48.png", "128": "images\/icon128.png" }, "options_page": "options.html", "permissions": [ "storage" ], "content_scripts": [ { "matches": [ "file:\/\/\/*\/*.feature", "*:\/\/*\/*.featurejjj", "https:\/\/raw.githubusercontent.com\/*.feature*", "*:\/\/*\/*.feature*&raw", "https:\/\/gitlab.com\/*.feature*", "https:\/\/bitbucket.org\/*\/raw\/*.feature*" ], "css": [ "css\/mod.css" ], "js": [ "js\/content_script.js" ] } ] } |