Bugout
Bugout code search
Bugout क्या है?
Bugout Simiotics द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Bugout code search"।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Bugout एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ 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" } } } |