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" } |