GPTShare

"Embrace the future of sharing with ChatGPT" The Chrome extension designed to simplify sharing your ChatGPT conversations. Say…

Что такое GPTShare?

GPTShare - это расширение Chrome, разработанное daisuke.sato1991, и его основная функция - ""Embrace the future of sharing with ChatGPT" The Chrome extension designed to simplify sharing your ChatGPT conversations. Say…".

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

screenshot

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

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

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

                        "Embrace the future of sharing with ChatGPT"

The Chrome extension designed to simplify sharing your ChatGPT conversations. Say goodbye to the hassle of taking screenshots or dealing with copy-paste!

With just a single click, you can generate a link to share with others. It's easy, efficient, and completely free to use.                    

Основная информация о расширении

Название GPTShare GPTShare
ID ckcfecajiabjpjjjfcbkncajmmhpjmhl
Официальный URL https://chromewebstore.google.com/detail/gptshare/ckcfecajiabjpjjjfcbkncajmmhpjmhl
Описание "Embrace the future of sharing with ChatGPT" The Chrome extension designed to simplify sharing your ChatGPT conversations. Say…
Размер файла 7.31 MB
Количество установок 215
Текущая Версия 1.0.0
Последнее Обновление 2023-04-23
Дата публикации 2023-04-22
Рейтинг 5.00/5 Всего 4 оценок
Разработчик daisuke.sato1991
Электронная почта [email protected]
Тип оплаты free
URL страницы политики конфиденциальности https://dsk310.notion.site/Privacy-Policy-cde053ff78234af2afd51e497c123e94
Поддерживаемые языки en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "version": "1.0.0",
    "name": "GPTShare",
    "content_security_policy": {
        "extension_pages": "script-src 'self'; object-src 'self'"
    },
    "action": {
        "default_popup": "index.html",
        "default_icon": {
            "16": "icons\/icon_16.png",
            "32": "icons\/icon_32.png",
            "48": "icons\/icon_48.png",
            "128": "icons\/icon_128.png"
        }
    },
    "icons": {
        "16": "icons\/icon_16.png",
        "32": "icons\/icon_32.png",
        "48": "icons\/icon_48.png",
        "128": "icons\/icon_128.png"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "content_script.js"
            ]
        }
    ],
    "permissions": [
        "tabs"
    ],
    "background": {
        "service_worker": "background.js"
    }
}