Bugout
Bugout code search
Bugout란 무엇입니까?
Bugout은(는) Simiotics에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Bugout code search"입니다.
확장 프로그램 스크린샷
Bugout 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
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 |
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" } } } |