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是由https://codesnippets.ai开发的Chrome扩展程序,该扩展的主要功能是“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

下载Code Snippets AI: Save your code snippets扩展crx文件

下载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"
    }
}