github-find

A plugin for searcing within Github repos.

github-findとは何ですか?

github-findはAidan Feldmanによって開発されたChromeの拡張機能で、その主な機能は「A plugin for searcing within Github repos.」です。

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

screenshot

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

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

拡張機能の使用方法

                        When viewing a repository on the Github website, an Octocat icon will appear in the address bar - press CTL-SHIFT-f and a search box will appear.

Check out the source here: https://github.com/afeld/github-find                    

拡張機能の基本情報

名前 github-find github-find
ID blocadmfchabihonegcgjjikbbmpliph
公式URL https://chromewebstore.google.com/detail/github-find/blocadmfchabihonegcgjjikbbmpliph
説明 A plugin for searcing within Github repos.
ファイルサイズ 40.7 KB
インストール数 164
現在のバージョン 1.0.2
最終更新日 2013-02-18
公開日 2013-02-17
評価 5.00/5 合計 1 レビュー
開発者 Aidan Feldman
支払い方法 free
拡張機能のウェブサイト https://github.com/afeld/github-find
ヘルプページのURL https://github.com/afeld/github-find/issues
対応言語 en
manifest.json
{
    "update_url": "http:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "github-find",
    "version": "1.0.2",
    "manifest_version": 2,
    "icons": {
        "16": "favicon.ico"
    },
    "description": "A plugin for searcing within Github repos.",
    "homepage_url": "https:\/\/github.com\/afeld\/github-find",
    "background": {
        "scripts": [
            "jquery-1.9.1.min.js",
            "background.js"
        ],
        "persistent": false
    },
    "page_action": {
        "default_icon": "favicon.ico",
        "default_title": "Click or press Ctrl+Shift+F to search this repository."
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/github.com\/*\/*"
            ],
            "exclude_globs": [
                "*github.com\/*\/"
            ],
            "js": [
                "jquery-1.9.1.min.js",
                "jquery.ui.position.min.js",
                "content-keydown.js"
            ]
        }
    ],
    "permissions": [
        "tabs"
    ]
}