Semantic Code Reviews

Semantic Code Reviews for GitHub.com

What is Semantic Code Reviews?

Semantic Code Reviews is a Chrome extension developed by https://explore.dev, and its main feature is "Semantic Code Reviews for GitHub.com".

Extension Screenshots

screenshot
screenshot
screenshot
screenshot
screenshot

Download Semantic Code Reviews Extension CRX File

Download Semantic Code Reviews extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        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.                    

Extension Basic Information

Name Semantic Code Reviews Semantic Code Reviews
ID dclabbgfnbmjodobfdhindnleidefmda
Official URL https://chromewebstore.google.com/detail/semantic-code-reviews/dclabbgfnbmjodobfdhindnleidefmda
Description Semantic Code Reviews for GitHub.com
File Size 287 KB
Installation Count 36
Current Version v33.2020.01
Last Updated 2020-08-10
Publish Date 2020-06-26
Rating 1.00/5 Total 1 Ratings
Developer https://explore.dev
Email [email protected]
Payment Type free
Extension Website https://explore.dev
Help Page URL https://github.com/explore-dev/semantic-code-reviews-community/issues/new/choose
Privacy Policy Page URL https://explore.dev/privacy
Supported Languages 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"
}