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 - это расширение Chrome, разработанное automatemylife00, и его основная функция - "Adds a 'Create File' button to code containers on web pages, allowing you to download the code as a file.".

Снимки экрана расширения

screenshot
screenshot

Скачать файл CRX расширения ChatGPT Code Downloader

Скачайте файлы расширений ChatGPT Code Downloader в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.

Инструкции по использованию расширения

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