Crackle.js

Code Review Checklist for Github pull requests

Crackle.jsとは何ですか?

Crackle.jsはschneid.brianによって開発されたChromeの拡張機能で、その主な機能は「Code Review Checklist for Github pull requests」です。

拡張機能のスクリーンショット

screenshot
screenshot

Crackle.js拡張機能のCRXファイルをダウンロード

Crackle.js拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。

拡張機能の使用方法

                        Want to keep your code quality high? Are your Github Pull Requests not adhering to certain coding best practices or guidelines? Then Crackle.js is for you!

Crackle.js is a Google Chrome extension that allows you to setup and follow a checklist for Github Pull Request code reviews. It is as simple as setting up a checklist that you or your development team follows and using it on any of your Github Pull Requests. To keep quality up, the Github "Merge" button is disabled until the checklist has been completed.                    

拡張機能の基本情報

名前 Crackle.js Crackle.js
ID gmajdddjbncejffnfmgeldkkcmiipili
公式URL https://chrome.google.com/webstore/detail/cracklejs/gmajdddjbncejffnfmgeldkkcmiipili
説明 Code Review Checklist for Github pull requests
ファイルサイズ 161 KB
インストール数 27
現在のバージョン 1.1.1
最終更新日 2015-02-20
公開日 2015-02-20
評価 3.00/5 合計 4 レビュー
開発者 schneid.brian
支払い方法 free
対応言語 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Crackle.js",
    "author": "Brian Schneider",
    "description": "Code Review Checklist for Github pull requests",
    "version": "1.1.1",
    "icons": {
        "16": "images\/icon16.png",
        "48": "images\/icon48.png",
        "128": "images\/icon128.png"
    },
    "page_action": {
        "default_icon": "images\/icon.png",
        "default_popup": "popup.html",
        "default_title": "Crackle.js"
    },
    "content_scripts": [
        {
            "js": [
                "js\/content.js"
            ],
            "matches": [
                "https:\/\/github.com\/*\/*\/pull\/*"
            ],
            "run_at": "document_end"
        }
    ],
    "permissions": [
        "history",
        "storage",
        "tabs",
        "https:\/\/github.com\/*\/*\/pull\/*",
        "declarativeContent"
    ],
    "background": {
        "scripts": [
            "js\/background.js"
        ],
        "persistent": false
    },
    "options_page": "options.html"
}