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 مع الأصدقاء لتثبيت الامتدادات بسهولة.

تعليمات استخدام التمديد

                        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
عنوان صفحة المساعدة 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": [
                ""
            ]
        }
    ]
}