Sealights

View coverage data in Git repositories. Collect code coverage from manual tests running in the browser.

Что такое Sealights?

Sealights - это расширение Chrome, разработанное Sealights, и его основная функция - "View coverage data in Git repositories. Collect code coverage from manual tests running in the browser.".

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

screenshot

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

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

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

                        1. Code Viewer

Shows code coverage & other metadata gathered by SeaLights.
Currently supports github.com, bitbucket.org, gitlab.com.

2. Manual Tests

Collects coverage from manual tests running in the browser.                    

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

Название Sealights Sealights
ID ldcbjefiplkmggapdfbpeemhihkgdmik
Официальный URL https://chromewebstore.google.com/detail/sealights/ldcbjefiplkmggapdfbpeemhihkgdmik
Описание View coverage data in Git repositories. Collect code coverage from manual tests running in the browser.
Размер файла 3.2 MB
Количество установок 761
Текущая Версия 1.12.5
Последнее Обновление 2023-10-26
Дата публикации 2020-06-30
Рейтинг 5.00/5 Всего 1 оценок
Разработчик Sealights
Электронная почта [email protected]
Тип оплаты free
Поддерживаемые языки en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Sealights",
    "version": "1.12.5",
    "description": "View coverage data in Git repositories. Collect code coverage from manual tests running in the browser.",
    "homepage_url": "https:\/\/chrome.google.com\/webstore\/detail\/sealights-code-viewer\/ldcbjefiplkmggapdfbpeemhihkgdmik?utm_source=chrome-app-launcher-info-dialog",
    "manifest_version": 3,
    "minimum_chrome_version": "88",
    "permissions": [
        "storage",
        "tabs",
        "webNavigation"
    ],
    "host_permissions": [
        "http:\/\/*\/*",
        "https:\/\/*\/*"
    ],
    "icons": {
        "128": "media\/icon.png"
    },
    "action": {
        "default_popup": "templates\/popup.html"
    },
    "content_scripts": [
        {
            "run_at": "document_idle",
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "css": [
                "styles\/content.css"
            ],
            "js": [
                "js\/content.js"
            ]
        }
    ],
    "background": {
        "service_worker": "js\/background.js"
    },
    "web_accessible_resources": [
        {
            "resources": [
                "fonts\/*",
                "js\/*",
                "media\/*",
                "styles\/*",
                "templates\/*"
            ],
            "matches": [
                ""
            ]
        }
    ]
}