ChatGPT Code Downloader

Adds a 'Create File' button to code containers on web pages, allowing you to download the code as a file.

ChatGPT Code Downloader란 무엇입니까?

ChatGPT Code Downloader은(는) automatemylife00에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Adds a 'Create File' button to code containers on web pages, allowing you to download the code as a file."입니다.

확장 프로그램 스크린샷

screenshot
screenshot

ChatGPT Code Downloader 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        ChatGPT Code Downloader is a handy tool for web developers who frequently copy and paste code snippets from the web into their text editors or IDEs. With this plugin, you can easily create a new file from any code snippet on a webpage, and download it in the appropriate file format for your language of choice.

Once you install the plugin, it will automatically add a "Create File" button to every code container on the webpage, making it easy to create and download new files without having to manually copy and paste code snippets. The plugin currently supports a wide range of programming languages, including JavaScript, HTML, CSS, Python, Java, C#, C++, Ruby, Go, Swift, SQL, and more.

This plugin is designed to be lightweight and non-intrusive, and it works seamlessly with most popular text editors and IDEs. Whether you're a seasoned developer or just starting out, ChatGPT Code Downloader can help you save time and streamline your workflow, so you can focus on what really matters - writing great code!                    

확장 프로그램 기본 정보

이름 ChatGPT Code Downloader ChatGPT Code Downloader
ID fkodheimkfkbomekjjpbblgmikniblmb
공식 URL https://chromewebstore.google.com/detail/chatgpt-code-downloader/fkodheimkfkbomekjjpbblgmikniblmb
설명 Adds a 'Create File' button to code containers on web pages, allowing you to download the code as a file.
파일 크기 50.55 KB
설치 횟수 1,229
현재 버전 1.0.0
최근 업데이트 2023-04-19
출시 날짜 2023-04-18
평점 4.00/5 총 4 개의 평점
개발자 automatemylife00
이메일 [email protected]
결제 유형 free
지원되는 언어 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "ChatGPT Code Downloader",
    "version": "1.0.0",
    "manifest_version": 3,
    "description": "Adds a 'Create File' button to code containers on web pages, allowing you to download the code as a file.",
    "icons": {
        "16": "icons\/icon16.png",
        "32": "icons\/icon32.png",
        "48": "icons\/icon48.png",
        "128": "icons\/icon128.png"
    },
    "permissions": [
        "clipboardRead"
    ],
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "content_script.js"
            ]
        }
    ],
    "background": {
        "service_worker": "background.js"
    }
}