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 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

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