Code Climate

A Chrome extension for Code Climate

什么是Code Climate?

Code Climate是由https://codeclimate.com开发的Chrome扩展程序,该扩展的主要功能是“A Chrome extension for Code Climate”。

扩展截图

screenshot
screenshot
screenshot

下载Code Climate扩展crx文件

下载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": [
                ""
            ]
        }
    ]
}