Bugout
Bugout code search
Was ist Bugout?
Bugout ist eine Chrome-Erweiterung, die von Simiotics entwickelt wurde, und ihr Hauptmerkmal ist "Bugout code search".
Erweiterungsscreenshots
Bugout-Erweiterungs-CRX-Datei herunterladen
Laden Sie Bugout-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
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.
Grundlegende Informationen zur Erweiterung
Name | Bugout |
ID | pmfkjbfklikglkoeldojcmpaedeghcee |
Offizielle URL | https://chromewebstore.google.com/detail/bugout/pmfkjbfklikglkoeldojcmpaedeghcee |
Beschreibung | Bugout code search |
Dateigröße | 11 KB |
Installationsanzahl | 37 |
Aktuelle Version | 0.4 |
Letztes Update | 2020-05-28 |
Veröffentlichungsdatum | 2020-05-28 |
Bewertung | 4.75/5 Insgesamt 4 Bewertungen |
Entwickler | Simiotics |
[email protected] | |
Zahlungsart | free |
Erweiterungswebsite | https://simiotics.com |
Unterstützte Sprachen | 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" } } } |