Semantic Code Reviews
Semantic Code Reviews for GitHub.com
Semantic Code Reviews क्या है?
Semantic Code Reviews https://explore.dev द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Semantic Code Reviews for GitHub.com"।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Semantic Code Reviews एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
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" } |