Briefly

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

Wat is Briefly?

Briefly is een Chrome-extensie ontwikkeld door Briefly, en de belangrijkste functie is "Briefly allows you to save time by generating summaries of texts in websites using an advanced GPT-3 AI algorithm.".

Extensie Screenshots

screenshot
screenshot

Download het CRX-bestand van de extensie Briefly

Download Briefly-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

                        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.                    

Basisinformatie over de Extensie

Naam Briefly Briefly
ID koceodkdlldkaoenidaolomgcjnaoolf
Officiële URL https://chromewebstore.google.com/detail/briefly/koceodkdlldkaoenidaolomgcjnaoolf
Beschrijving Briefly allows you to save time by generating summaries of texts in websites using an advanced GPT-3 AI algorithm.
Bestandsgrootte 95.5 KB
Aantal Installaties 139
Huidige Versie 1.0.1
Laatst Bijgewerkt 2022-02-14
Publicatiedatum 2022-01-17
Beoordeling 3.00/5 Totaal 3 Beoordelingen
Ontwikkelaar Briefly
E-mail [email protected]
Betalingswijze free
Extensiewebsite https://getbriefly.co
Ondersteunde Talen 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"
            ]
        }
    ]
}