Semantic Code Reviews

Semantic Code Reviews for GitHub.com

Apa itu Semantic Code Reviews?

Semantic Code Reviews adalah ekstensi Chrome yang dikembangkan oleh https://explore.dev, dan fitur utamanya adalah "Semantic Code Reviews for GitHub.com".

Screenshot Ekstensi

screenshot
screenshot
screenshot
screenshot
screenshot

Unduh Berkas CRX Ekstensi Semantic Code Reviews

Unduh file ekstensi Semantic Code Reviews dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.

Petunjuk Penggunaan Ekstensi

                        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.                    

Informasi Dasar Ekstensi

Nama Semantic Code Reviews Semantic Code Reviews
ID dclabbgfnbmjodobfdhindnleidefmda
URL Resmi https://chromewebstore.google.com/detail/semantic-code-reviews/dclabbgfnbmjodobfdhindnleidefmda
Deskripsi Semantic Code Reviews for GitHub.com
Ukuran File 287 KB
Jumlah Instalasi 36
Versi Saat Ini v33.2020.01
Terakhir Diperbarui 2020-08-10
Tanggal Publikasi 2020-06-26
Penilaian 1.00/5 Total 1 Penilaian
Pengembang https://explore.dev
Email [email protected]
Tipe Pembayaran free
Situs Ekstensi https://explore.dev
URL Halaman Bantuan https://github.com/explore-dev/semantic-code-reviews-community/issues/new/choose
URL Halaman Kebijakan Privasi https://explore.dev/privacy
Bahasa yang Didukung 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"
}