Semantic Code Reviews

Semantic Code Reviews for GitHub.com

Semantic Code Reviews란 무엇입니까?

Semantic Code Reviews은(는) https://explore.dev에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Semantic Code Reviews for GitHub.com"입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot
screenshot
screenshot

Semantic Code Reviews 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        Semantic code reviews is a new approach to reduce the friction associated with code reviews and enable developers to spend more time reviewing what matters!

With semantic code reviews, you will be able to review code changes by focusing on the changes relevant to the code symbol you're reviewing.

This Chrome extension introduces a new tab called Explore in GitHub.com's pull request interface where developers can perform a semantic code review.

The service is currently available for TypeScript and Go.                    

확장 프로그램 기본 정보

이름 Semantic Code Reviews Semantic Code Reviews
ID dclabbgfnbmjodobfdhindnleidefmda
공식 URL https://chromewebstore.google.com/detail/semantic-code-reviews/dclabbgfnbmjodobfdhindnleidefmda
설명 Semantic Code Reviews for GitHub.com
파일 크기 287 KB
설치 횟수 36
현재 버전 v33.2020.01
최근 업데이트 2020-08-10
출시 날짜 2020-06-26
평점 1.00/5 총 1 개의 평점
개발자 https://explore.dev
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://explore.dev
도움말 페이지 URL https://github.com/explore-dev/semantic-code-reviews-community/issues/new/choose
개인정보 보호 정책 페이지 URL https://explore.dev/privacy
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Semantic Code Reviews",
    "version": "20.8.10.1522",
    "manifest_version": 2,
    "author": "explore.dev",
    "description": "Semantic Code Reviews for GitHub.com",
    "homepage_url": "https:\/\/explore.dev",
    "minimum_chrome_version": "54",
    "icons": {
        "128": "icon.png"
    },
    "permissions": [
        "activeTab",
        "https:\/\/github.com\/*"
    ],
    "background": {
        "scripts": [
            "background.bundle.js"
        ],
        "persistent": false
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/github.com\/*",
                "https:\/\/api.explore.dev\/*"
            ],
            "css": [
                "styles.css"
            ],
            "js": [
                "contentScript.bundle.js"
            ],
            "run_at": "document_start",
            "all_frames": false
        }
    ],
    "version_name": "v33.2020.01"
}