Semantic Code Reviews
Semantic Code Reviews for GitHub.com
Wat is Semantic Code Reviews?
Semantic Code Reviews is een Chrome-extensie ontwikkeld door https://explore.dev, en de belangrijkste functie is "Semantic Code Reviews for GitHub.com".
Extensie Screenshots
Download het CRX-bestand van de extensie Semantic Code Reviews
Download Semantic Code Reviews-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.
Instructies voor het Gebruik van de Extensie
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.
Basisinformatie over de Extensie
Naam | Semantic Code Reviews |
ID | dclabbgfnbmjodobfdhindnleidefmda |
Officiële URL | https://chromewebstore.google.com/detail/semantic-code-reviews/dclabbgfnbmjodobfdhindnleidefmda |
Beschrijving | Semantic Code Reviews for GitHub.com |
Bestandsgrootte | 287 KB |
Aantal Installaties | 36 |
Huidige Versie | v33.2020.01 |
Laatst Bijgewerkt | 2020-08-10 |
Publicatiedatum | 2020-06-26 |
Beoordeling | 1.00/5 Totaal 1 Beoordelingen |
Ontwikkelaar | https://explore.dev |
[email protected] | |
Betalingswijze | free |
Extensiewebsite | https://explore.dev |
Help Pagina-URL | https://github.com/explore-dev/semantic-code-reviews-community/issues/new/choose |
URL van de Privacybeleid Pagina | https://explore.dev/privacy |
Ondersteunde Talen | 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" } |