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
官方網址 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"
}