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 مع الأصدقاء لتثبيت الامتدادات بسهولة.
تعليمات استخدام التمديد
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 |
عنوان صفحة المساعدة | https://github.com/explore-dev/semantic-code-reviews-community/issues/new/choose |
عنوان صفحة سياسة الخصوصية | 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" } |