Code Snippets AI: Save your code snippets

Adds save + copy buttons for all code blocks on the web. Save code snippets straight into your Code Snippets AI library.

Τι είναι το Code Snippets AI: Save your code snippets;

Το Code Snippets AI: Save your code snippets είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον https://codesnippets.ai, και η κύρια λειτουργία του είναι "Adds save + copy buttons for all code blocks on the web. Save code snippets straight into your Code Snippets AI library.".

Στιγμιότυπα Επέκτασης

screenshot
screenshot
screenshot
screenshot

Λήψη αρχείου CRX της επέκτασης Code Snippets AI: Save your code snippets

Λήψη αρχείων επέκτασης Code Snippets AI: Save your code snippets σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.

Οδηγίες Χρήσης της Επέκτασης

                        Save any code you find on the web, directly to your Code Snippets AI Library.
The easiest way to Copy & Save Code Snippets from the web.

To get started, hover over any code snippet on a webpage and click the Copy button to add the code to your computer's clipboard.

To save your Code Snippet directly to your Code Snippets Library, head over to our website to get your API Key.

Once you've clicked 'Save' on a Code Snippet, our AI will generate a Title and determine the code language for the snippet, before saving it directly into your Secure, Online, Code Snippets Library.

- Copy Code Snippets to your computer's clipboard
- Generates a title for the snippet based on the snippet content
- Determines the code’s language

You can view and manage your snippets in your Code Snippets AI library! 

Please note: To save Code Snippets to your online library, you need to have an active subscription to our platform.                    

Βασικές Πληροφορίες Επέκτασης

Όνομα Code Snippets AI: Save your code snippets Code Snippets AI: Save your code snippets
ID jakcfffjpicjchmjobhdhicakjbmefka
Επίσημο URL https://chromewebstore.google.com/detail/code-snippets-ai-save-you/jakcfffjpicjchmjobhdhicakjbmefka
Περιγραφή Adds save + copy buttons for all code blocks on the web. Save code snippets straight into your Code Snippets AI library.
Μέγεθος Αρχείου 113 KB
Αριθμός Εγκαταστάσεων 146
Τρέχουσα Έκδοση 0.0.1
Τελευταία Ενημέρωση 2023-09-15
Ημερομηνία Δημοσίευσης 2023-09-15
Αξιολόγηση 5.00/5 Συνολικά 1 Αξιολογήσεις
Προγραμματιστής https://codesnippets.ai
Ηλεκτρονικό ταχυδρομείο [email protected]
Τύπος Πληρωμής in_app
Ιστότοπος Επέκτασης https://codesnippets.ai
Διεύθυνση URL της Σελίδας Βοήθειας https://codesnippets.ai/faq
URL της Σελίδας Πολιτικής Απορρήτου https://codesnippets.ai/privacy
Υποστηριζόμενες Γλώσσες en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Code Snippets AI: Save your code snippets",
    "short_name": "Code Snippets AI",
    "version": "0.0.1",
    "author": "CodeSnippets.AI",
    "description": "Adds save + copy buttons for all code blocks on the web. Save code snippets straight into your Code Snippets AI library.",
    "permissions": [
        "storage"
    ],
    "host_permissions": [
        "https:\/\/codesnippets.ai\/"
    ],
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "content.js"
            ],
            "css": [
                "styles.css"
            ]
        }
    ],
    "icons": {
        "16": "icons\/icon16.png",
        "32": "icons\/icon32.png",
        "48": "icons\/icon48.png",
        "128": "icons\/icon128.png"
    },
    "action": {
        "default_popup": "popup.html"
    }
}