Sealights

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

Sealights란 무엇입니까?

Sealights은(는) Sealights에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "View coverage data in Git repositories. Collect code coverage from manual tests running in the browser."입니다.

확장 프로그램 스크린샷

screenshot

Sealights 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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": [
                ""
            ]
        }
    ]
}