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.

O que é Code Snippets AI: Save your code snippets?

Code Snippets AI: Save your code snippets é uma extensão do Chrome desenvolvida por https://codesnippets.ai, e sua principal característica é "Adds save + copy buttons for all code blocks on the web. Save code snippets straight into your Code Snippets AI library.".

Capturas de Tela da Extensão

screenshot
screenshot
screenshot
screenshot

Baixar o arquivo CRX da Extensão Code Snippets AI: Save your code snippets

Baixe arquivos de extensão Code Snippets AI: Save your code snippets no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

                        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.                    

Informações Básicas da Extensão

Nome Code Snippets AI: Save your code snippets Code Snippets AI: Save your code snippets
ID jakcfffjpicjchmjobhdhicakjbmefka
URL Oficial https://chromewebstore.google.com/detail/code-snippets-ai-save-you/jakcfffjpicjchmjobhdhicakjbmefka
Descrição Adds save + copy buttons for all code blocks on the web. Save code snippets straight into your Code Snippets AI library.
Tamanho do Arquivo 113 KB
Contagem de Instalações 146
Versão Atual 0.0.1
Última Atualização 2023-09-15
Data de Publicação 2023-09-15
Classificação 5.00/5 Total de 1 Avaliações
Desenvolvedor https://codesnippets.ai
Email [email protected]
Tipo de Pagamento in_app
Site da Extensão https://codesnippets.ai
URL da Página de Ajuda https://codesnippets.ai/faq
URL da Página de Política de Privacidade https://codesnippets.ai/privacy
Idiomas Suportados 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"
    }
}