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ファイルをダウンロード

Semantic Code Reviews拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。

拡張機能の使用方法

                        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
Eメール [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"
}