Snippet Sage
Snippets at Your Fingertips!
Τι είναι το Snippet Sage;
Το Snippet Sage είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον wooing0306, και η κύρια λειτουργία του είναι "Snippets at Your Fingertips!".
Στιγμιότυπα Επέκτασης
Λήψη αρχείου CRX της επέκτασης Snippet Sage
Λήψη αρχείων επέκτασης Snippet Sage σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.
Οδηγίες Χρήσης της Επέκτασης
Discover the revolutionary way to generate, understand, debug, improve, and optimize code with SnippetSage, a powerful Chrome extension that brings an AI-powered chatbot right to your browser. With SnippetSage, you'll never feel lost or overwhelmed by code again. Our intuitive extension makes it incredibly easy to communicate with an AI chatbot, leveraging the power of GPT to provide real-time assistance and insights on any code snippet. Whether you're a beginner or an experienced developer, SnippetSage is the perfect companion to help you navigate the vast world of programming. It works seamlessly with a wide variety of programming languages and frameworks, making it the ultimate tool for developers of all skill levels. Key Features: Seamless Codeblock Detection and Integration: SnippetSage's smart algorithms automatically analyze the web page you're currently browsing and identify code snippets within the content. With just a few clicks, you can send any code block to the SnippetSage chatbot and start a conversation about it. AI-Powered Chatbot Assistance: Experience the power of GPT-powered AI at your fingertips! SnippetSage's chatbot is always available to assist you, providing valuable insights, explanations, and suggestions for your code. Ask questions, clarify doubts, and get step-by-step guidance through complex algorithms and functions. Code Generation and Optimization: Elevate your programming skills and save time with SnippetSage's code generation capabilities. The chatbot can provide you with optimized code snippets tailored to your requirements, ensuring that you always have the best possible solution for your project. It can also identify areas in your code that can be improved, offering recommendations for optimization and best practices.
Βασικές Πληροφορίες Επέκτασης
Όνομα | Snippet Sage |
ID | ehfjnjekakflhnbjplofgkbdlcepdoen |
Επίσημο URL | https://chromewebstore.google.com/detail/snippet-sage/ehfjnjekakflhnbjplofgkbdlcepdoen |
Περιγραφή | Snippets at Your Fingertips! |
Μέγεθος Αρχείου | 770 KB |
Αριθμός Εγκαταστάσεων | 35 |
Τρέχουσα Έκδοση | 0.1.0 |
Τελευταία Ενημέρωση | 2023-03-27 |
Ημερομηνία Δημοσίευσης | 2023-03-24 |
Προγραμματιστής | wooing0306 |
Ηλεκτρονικό ταχυδρομείο | [email protected] |
Τύπος Πληρωμής | in_app |
Ιστότοπος Επέκτασης | https://www.snippetsage.com |
Υποστηριζόμενες Γλώσσες | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "Snippet Sage", "short_name": "snippetsage", "version": "0.1.0", "description": "Snippets at Your Fingertips!", "icons": { "16": ".\/logos\/logo16.png", "32": ".\/logos\/logo32.png", "64": ".\/logos\/logo64.png", "128": ".\/logos\/logo128.png" }, "background": { "service_worker": "background.js" }, "content_scripts": [ { "js": [ "scripts\/content.js" ], "matches": [ "https:\/\/*\/*" ] }, { "js": [ "scripts\/localStorage.js" ], "matches": [ "https:\/\/snippetsage.com\/*", "https:\/\/*.snippetsage.com\/*" ] } ], "permissions": [ "storage" ], "externally_connectable": { "ids": [ "mbiphihmcfaelfafklmbfecdmgnddmpb" ], "matches": [ "https:\/\/*.snippetsage.com\/*", "https:\/\/snippetsage.com\/*" ] }, "host_permissions": [ "https:\/\/*\/*" ], "action": { "default_popup": ".\/out\/extension.html" }, "author": "[email protected]" } |