Briefly

Briefly allows you to save time by generating summaries of texts in websites using an advanced GPT-3 AI algorithm.

Что такое Briefly?

Briefly - это расширение Chrome, разработанное Briefly, и его основная функция - "Briefly allows you to save time by generating summaries of texts in websites using an advanced GPT-3 AI algorithm.".

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

screenshot
screenshot

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

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

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

                        Briefly is a chrome extension that allows you to summarize texts in websites.

We use an advances GPT-3 AI algorithim to genereate the best possible summaries.                    

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

Название Briefly Briefly
ID koceodkdlldkaoenidaolomgcjnaoolf
Официальный URL https://chromewebstore.google.com/detail/briefly/koceodkdlldkaoenidaolomgcjnaoolf
Описание Briefly allows you to save time by generating summaries of texts in websites using an advanced GPT-3 AI algorithm.
Размер файла 95.5 KB
Количество установок 139
Текущая Версия 1.0.1
Последнее Обновление 2022-02-14
Дата публикации 2022-01-17
Рейтинг 3.00/5 Всего 3 оценок
Разработчик Briefly
Электронная почта [email protected]
Тип оплаты free
Официальный сайт расширения https://getbriefly.co
Поддерживаемые языки en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Briefly",
    "version": "1.0.1",
    "description": "Briefly allows you to save time by generating summaries of texts in websites using an advanced GPT-3 AI algorithm.",
    "icons": {
        "16": "icons\/icon_16.png",
        "32": "icons\/icon_32.png",
        "48": "icons\/icon_48.png",
        "128": "icons\/icon_128.png"
    },
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "browser_action": {
        "default_title": "Briefly",
        "default_popup": "popup.html"
    },
    "permissions": [
        "storage",
        "contextMenus"
    ],
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "run_at": "document_idle",
            "js": [
                "globals.js",
                "components.js",
                "contentScript.js"
            ],
            "css": [
                "contentScript.css",
                "components.css",
                "popup.css"
            ]
        }
    ]
}