Semantic Code Reviews
Semantic Code Reviews for GitHub.com
Semantic Code Reviews là gì?
Semantic Code Reviews là một tiện ích mở rộng Chrome được phát triển bởi https://explore.dev, và tính năng chính của nó là "Semantic Code Reviews for GitHub.com".
Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng
Tải xuống tệp CRX của tiện ích mở rộng Semantic Code Reviews
Tải xuống các tệp mở rộng Semantic Code Reviews dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.
Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng
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.
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | Semantic Code Reviews |
ID | dclabbgfnbmjodobfdhindnleidefmda |
URL Chính Thức | https://chromewebstore.google.com/detail/semantic-code-reviews/dclabbgfnbmjodobfdhindnleidefmda |
Mô tả | Semantic Code Reviews for GitHub.com |
Kích Thước Tệp | 287 KB |
Số Lần Cài Đặt | 36 |
Phiên Bản Hiện Tại | v33.2020.01 |
Cập Nhật Lần Cuối | 2020-08-10 |
Ngày Phát Hành | 2020-06-26 |
Đánh Giá | 1.00/5 Tổng số 1 Đánh Giá |
Nhà Phát Triển | https://explore.dev |
[email protected] | |
Loại Thanh Toán | free |
Trang Web Mở Rộng | https://explore.dev |
URL Trang Trợ Giúp | https://github.com/explore-dev/semantic-code-reviews-community/issues/new/choose |
URL Trang Chính Sách Bảo Mật | https://explore.dev/privacy |
Ngôn Ngữ Được Hỗ Trợ | 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" } |