Semantic Code Reviews

Semantic Code Reviews for GitHub.com

Co to jest Semantic Code Reviews?

Semantic Code Reviews to rozszerzenie Chrome opracowane przez https://explore.dev, a jego główną funkcją jest „Semantic Code Reviews for GitHub.com”.

Zrzuty ekranu rozszerzenia

screenshot
screenshot
screenshot
screenshot
screenshot

Pobierz plik CRX rozszerzenia Semantic Code Reviews

Pobierz pliki rozszerzeń Semantic Code Reviews w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        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.                    

Podstawowe informacje o rozszerzeniu

Nazwa Semantic Code Reviews Semantic Code Reviews
ID dclabbgfnbmjodobfdhindnleidefmda
Oficjalny URL https://chromewebstore.google.com/detail/semantic-code-reviews/dclabbgfnbmjodobfdhindnleidefmda
Opis Semantic Code Reviews for GitHub.com
Rozmiar pliku 287 KB
Liczba instalacji 36
Aktualna Wersja v33.2020.01
Ostatnia Aktualizacja 2020-08-10
Data Publikacji 2020-06-26
Ocena 1.00/5 Łącznie 1 Oceny
Deweloper https://explore.dev
E-mail [email protected]
Typ Płatności free
Strona Rozszerzenia https://explore.dev
Adres URL Strony Pomocy https://github.com/explore-dev/semantic-code-reviews-community/issues/new/choose
Adres URL Strony Polityki Prywatności https://explore.dev/privacy
Obsługiwane Języki 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"
}