Pretty Gherkin

Open your cucumber feature files written in gherkin in the browser to see them formatted in a human-friendly way.

Что такое Pretty Gherkin?

Pretty Gherkin - это расширение Chrome, разработанное martin.roddam, и его основная функция - "Open your cucumber feature files written in gherkin in the browser to see them formatted in a human-friendly way.".

Снимки экрана расширения

screenshot
screenshot
screenshot

Скачать файл CRX расширения Pretty Gherkin

Скачайте файлы расширений Pretty Gherkin в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.

Инструкции по использованию расширения

                        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.                    

Основная информация о расширении

Название Pretty Gherkin Pretty Gherkin
ID blemhogdenfkkojlpghcinocbfjheioc
Официальный URL https://chromewebstore.google.com/detail/pretty-gherkin/blemhogdenfkkojlpghcinocbfjheioc
Описание Open your cucumber feature files written in gherkin in the browser to see them formatted in a human-friendly way.
Размер файла 136 KB
Количество установок 3,681
Текущая Версия 0.2.5
Последнее Обновление 2018-01-25
Дата публикации 2018-01-25
Рейтинг 2.82/5 Всего 17 оценок
Разработчик martin.roddam
Тип оплаты free
URL страницы помощи https://twitter.com/testanalyst
Поддерживаемые языки 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"
            ]
        }
    ]
}