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
电子邮箱 [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"
}