Semantic Code Reviews
Semantic Code Reviews for GitHub.com
Vad är Semantic Code Reviews?
Semantic Code Reviews är en Chrome-tillägg utvecklad av https://explore.dev, och dess huvudfunktion är "Semantic Code Reviews for GitHub.com".
Tilläggsskärmbilder
Ladda ner Semantic Code Reviews-förlängningens CRX-fil
Ladda ner Semantic Code Reviews-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.
Användarmanual för Tillägg
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.
Grundläggande Information om Tillägg
Namn | Semantic Code Reviews |
ID | dclabbgfnbmjodobfdhindnleidefmda |
Officiell webbadress | https://chromewebstore.google.com/detail/semantic-code-reviews/dclabbgfnbmjodobfdhindnleidefmda |
Beskrivning | Semantic Code Reviews for GitHub.com |
Filstorlek | 287 KB |
Antal Installationer | 36 |
Aktuell Version | v33.2020.01 |
Senast Uppdaterad | 2020-08-10 |
Publiceringsdatum | 2020-06-26 |
Betyg | 1.00/5 Totalt 1 Betyg |
Utvecklare | https://explore.dev |
E-post | [email protected] |
Betalningssätt | free |
Tilläggswebbplats | https://explore.dev |
Hjälpsida URL | https://github.com/explore-dev/semantic-code-reviews-community/issues/new/choose |
URL till Sekretesspolicy Sidan | https://explore.dev/privacy |
Stödda Språk | 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" } |