Semantic Code Reviews
Semantic Code Reviews for GitHub.com
Semantic Code Reviewsคืออะไร?
Semantic Code Reviews เป็นส่วนขยายของ Chrome ที่พัฒนาโดย https://explore.dev และคุณลักษณะหลักของมันคือ "Semantic Code Reviews for GitHub.com"
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Semantic Code Reviews
ดาวน์โหลดไฟล์ส่วนขยาย Semantic Code Reviews ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
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.
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | Semantic Code Reviews |
ID | dclabbgfnbmjodobfdhindnleidefmda |
URL อย่างเป็นทางการ | https://chromewebstore.google.com/detail/semantic-code-reviews/dclabbgfnbmjodobfdhindnleidefmda |
คำอธิบาย | Semantic Code Reviews for GitHub.com |
ขนาดไฟล์ | 287 KB |
จำนวนการติดตั้ง | 36 |
เวอร์ชันปัจจุบัน | v33.2020.01 |
อัปเดตครั้งล่าสุด | 2020-08-10 |
วันที่เผยแพร่ | 2020-06-26 |
คะแนน | 1.00/5 รวมทั้งหมด 1 คะแนน |
ผู้พัฒนา | https://explore.dev |
อีเมล | [email protected] |
ประเภทการชำระเงิน | free |
เว็บไซต์ส่วนขยาย | https://explore.dev |
URL หน้าช่วยเหลือ | https://github.com/explore-dev/semantic-code-reviews-community/issues/new/choose |
URL หน้านโยบายความเป็นส่วนตัว | https://explore.dev/privacy |
ภาษาที่รองรับ | 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" } |