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 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

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