Bugout

Bugout code search

Bugoutคืออะไร?

Bugout เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Simiotics และคุณลักษณะหลักของมันคือ "Bugout code search"

ภาพหน้าจอของส่วนขยาย

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Bugout

ดาวน์โหลดไฟล์ส่วนขยาย 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"
        }
    }
}