Briefly

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

Co to jest Briefly?

Briefly to rozszerzenie Chrome opracowane przez Briefly, a jego główną funkcją jest „Briefly allows you to save time by generating summaries of texts in websites using an advanced GPT-3 AI algorithm.”.

Zrzuty ekranu rozszerzenia

screenshot
screenshot

Pobierz plik CRX rozszerzenia Briefly

Pobierz pliki rozszerzeń Briefly w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        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.                    

Podstawowe informacje o rozszerzeniu

Nazwa Briefly Briefly
ID koceodkdlldkaoenidaolomgcjnaoolf
Oficjalny URL https://chromewebstore.google.com/detail/briefly/koceodkdlldkaoenidaolomgcjnaoolf
Opis Briefly allows you to save time by generating summaries of texts in websites using an advanced GPT-3 AI algorithm.
Rozmiar pliku 95.5 KB
Liczba instalacji 139
Aktualna Wersja 1.0.1
Ostatnia Aktualizacja 2022-02-14
Data Publikacji 2022-01-17
Ocena 3.00/5 Łącznie 3 Oceny
Deweloper Briefly
E-mail [email protected]
Typ Płatności free
Strona Rozszerzenia https://getbriefly.co
Obsługiwane Języki 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"
            ]
        }
    ]
}