Bugout
Bugout code search
Bugout là gì?
Bugout là một tiện ích mở rộng Chrome được phát triển bởi Simiotics, và tính năng chính của nó là "Bugout code search".
Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng
Tải xuống tệp CRX của tiện ích mở rộng Bugout
Tải xuống các tệp mở rộng Bugout dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.
Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng
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.
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | Bugout |
ID | pmfkjbfklikglkoeldojcmpaedeghcee |
URL Chính Thức | https://chromewebstore.google.com/detail/bugout/pmfkjbfklikglkoeldojcmpaedeghcee |
Mô tả | Bugout code search |
Kích Thước Tệp | 11 KB |
Số Lần Cài Đặt | 37 |
Phiên Bản Hiện Tại | 0.4 |
Cập Nhật Lần Cuối | 2020-05-28 |
Ngày Phát Hành | 2020-05-28 |
Đánh Giá | 4.75/5 Tổng số 4 Đánh Giá |
Nhà Phát Triển | Simiotics |
[email protected] | |
Loại Thanh Toán | free |
Trang Web Mở Rộng | https://simiotics.com |
Ngôn Ngữ Được Hỗ Trợ | 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" } } } |