Boxcutter

Better package manifests on Github

Boxcutterとは何ですか?

BoxcutterはMike Northによって開発されたChromeの拡張機能で、その主な機能は「Better package manifests on Github」です。

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

screenshot

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

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

拡張機能の使用方法

                        Boxcutter enhances package manifests on github. 

* Click on package names to jump to their repositories

Support for the following package managers (more coming soon):

* NPM (JavaScript)
* Bower (JavaScript)
* Gem (Ruby)
* Hex (Elixir)                    

拡張機能の基本情報

名前 Boxcutter Boxcutter
ID knapnimomamjogbajmmoefhopnebjbff
公式URL https://chromewebstore.google.com/detail/boxcutter/knapnimomamjogbajmmoefhopnebjbff
説明 Better package manifests on Github
ファイルサイズ 44.97 KB
インストール数 198
現在のバージョン 9
最終更新日 2018-05-04
公開日 2018-05-04
評価 5.00/5 合計 1 レビュー
開発者 Mike North
Eメール [email protected]
支払い方法 free
拡張機能のウェブサイト https://github.com/mike-north/chrome-github-boxcutter
ヘルプページのURL https://twitter.com/michaellnorth
対応言語 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Boxcutter",
    "description": "Better package manifests on Github",
    "version": "9",
    "manifest_version": 2,
    "permissions": [
        "https:\/\/registry.npmjs.org\/*",
        "https:\/\/rubygems.org\/*",
        "https:\/\/hex.pm\/*",
        "https:\/\/bower.herokuapp.com\/*",
        "https:\/\/packagist.org\/*"
    ],
    "content_scripts": [
        {
            "matches": [
                "https:\/\/github.com\/*"
            ],
            "js": [
                "jquery.min.js",
                "content.js"
            ]
        }
    ],
    "icons": {
        "128": "icon128.png"
    }
}