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
电子邮箱 [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"
        }
    }
}