Semantic Code Reviews
Semantic Code Reviews for GitHub.com
Cos'è Semantic Code Reviews?
Semantic Code Reviews è un'estensione di Chrome sviluppata da https://explore.dev, e la sua funzione principale è "Semantic Code Reviews for GitHub.com".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione Semantic Code Reviews
Scarica i file di estensione Semantic Code Reviews in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
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.
Informazioni di Base sull'Estensione
Nome | Semantic Code Reviews |
ID | dclabbgfnbmjodobfdhindnleidefmda |
URL Ufficiale | https://chromewebstore.google.com/detail/semantic-code-reviews/dclabbgfnbmjodobfdhindnleidefmda |
Descrizione | Semantic Code Reviews for GitHub.com |
Dimensione del File | 287 KB |
Conteggio Installazioni | 36 |
Versione Corrente | v33.2020.01 |
Ultimo Aggiornamento | 2020-08-10 |
Data di Pubblicazione | 2020-06-26 |
Valutazione | 1.00/5 Totale 1 Valutazioni |
Sviluppatore | https://explore.dev |
[email protected] | |
Tipo di Pagamento | free |
Sito Web dell'Estensione | https://explore.dev |
URL della Pagina di Aiuto | https://github.com/explore-dev/semantic-code-reviews-community/issues/new/choose |
URL della Pagina della Politica sulla Privacy | https://explore.dev/privacy |
Lingue Supportate | 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" } |