Code Climate

A Chrome extension for Code Climate

Что такое Code Climate?

Code Climate - это расширение Chrome, разработанное https://codeclimate.com, и его основная функция - "A Chrome extension for Code Climate".

Снимки экрана расширения

screenshot
screenshot
screenshot

Скачать файл CRX расширения Code Climate

Скачайте файлы расширений Code Climate в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.

Инструкции по использованию расширения

                        Code quality and test coverage feedback without ever leaving GitHub.

See issues displayed directly inside GitHub’s UI. Review which lines are covered in diffs, files, and more. And add repos and open tickets without changing your workflow.                    

Основная информация о расширении

Название Code Climate Code Climate
ID phgahogocbnfilkegjdpohgkkjgahjgk
Официальный URL https://chromewebstore.google.com/detail/code-climate/phgahogocbnfilkegjdpohgkkjgahjgk
Описание A Chrome extension for Code Climate
Размер файла 3.21 MB
Количество установок 12,872
Текущая Версия 735
Последнее Обновление 2023-07-10
Дата публикации 2020-06-16
Рейтинг 3.88/5 Всего 42 оценок
Разработчик https://codeclimate.com
Электронная почта [email protected]
Тип оплаты free
Официальный сайт расширения https://codeclimate.com/browser-extension
URL страницы помощи https://docs.codeclimate.com
Поддерживаемые языки en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Code Climate",
    "version": "735",
    "homepage_url": "https:\/\/codeclimate.com",
    "icons": {
        "128": "icons\/icon128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/github.com\/*"
            ],
            "js": [
                "js\/content.js"
            ],
            "css": [
                "vendor\/octicons\/octicons.css",
                "vendor\/bentonsans\/benton.css",
                "stylesheets\/styles.css"
            ]
        },
        {
            "matches": [
                "https:\/\/codeclimate.com\/*",
                "https:\/\/api.codeclimate.com\/*"
            ],
            "js": [
                "js\/cc_content.js"
            ]
        }
    ],
    "background": {
        "service_worker": "js\/background.js"
    },
    "permissions": [
        "cookies",
        "storage"
    ],
    "manifest_version": 3,
    "description": "A Chrome extension for Code Climate",
    "options_page": "options.html",
    "action": {
        "default_icon": "icons\/icon64.png",
        "default_popup": "popup.html"
    },
    "content_security_policy": {
        "extension_pages": "script-src 'self'; object-src 'self'"
    },
    "host_permissions": [
        "https:\/\/github.com\/*",
        "https:\/\/codeclimate.com\/*",
        "https:\/\/api.codeclimate.com\/*"
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "badges\/*",
                "icons\/*",
                "vendor\/octicons\/octicons.eot",
                "vendor\/octicons\/octicons.svg",
                "vendor\/octicons\/octicons.ttf",
                "vendor\/octicons\/octicons.woff",
                "vendor\/bentonsans\/*",
                "vendor\/snowplow\/2.7.0\/*"
            ],
            "matches": [
                ""
            ]
        }
    ]
}