Bugout

Bugout code search

Bugoutとは何ですか?

BugoutはSimioticsによって開発されたChromeの拡張機能で、その主な機能は「Bugout code search」です。

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

screenshot

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

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

拡張機能の使用方法

                        Bugout is a search engine for programmers. You can search Bugout for API or library methods and for errors. Bugout responds to your queries with examples of code that uses those methods or fixes those errors.

To use Bugout from your browser, highlight an error message and click the Bugout icon or hit Alt+b.

Bugout currently supports Python APIs, libraries, and errors with a focus on the Python data science stack. As we grow our search engine, we will add more Python APIs and libraries (web frameworks like Flask and Django, infrastructure libraries like boto3). Once we have a solid offering for Python, we plan to expand to other languages.                    

拡張機能の基本情報

名前 Bugout Bugout
ID pmfkjbfklikglkoeldojcmpaedeghcee
公式URL https://chromewebstore.google.com/detail/bugout/pmfkjbfklikglkoeldojcmpaedeghcee
説明 Bugout code search
ファイルサイズ 11 KB
インストール数 37
現在のバージョン 0.4
最終更新日 2020-05-28
公開日 2020-05-28
評価 4.75/5 合計 4 レビュー
開発者 Simiotics
Eメール [email protected]
支払い方法 free
拡張機能のウェブサイト https://simiotics.com
対応言語 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Bugout",
    "version": "0.4",
    "description": "Bugout code search",
    "manifest_version": 2,
    "permissions": [
        "activeTab"
    ],
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "browser_action": {
        "default_icon": {
            "16": "images\/bugout16.png",
            "32": "images\/bugout32.png",
            "48": "images\/bugout48.png",
            "128": "images\/bugout128.png"
        },
        "default_title": "Bugout: The search engine for programmers.\nTo use:\n1. Highlight the code or error message you want to search for\n2. Hit this button or press Alt+b"
    },
    "icons": {
        "16": "images\/bugout16.png",
        "32": "images\/bugout32.png",
        "48": "images\/bugout48.png",
        "128": "images\/bugout128.png"
    },
    "commands": {
        "bugout-search": {
            "suggested_key": {
                "default": "Alt+B"
            },
            "description": "Bugout code search"
        }
    }
}