Briefly

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

Qu'est-ce que Briefly ?

Briefly est une extension Chrome développée par Briefly, et sa fonction principale est "Briefly allows you to save time by generating summaries of texts in websites using an advanced GPT-3 AI algorithm.".

Captures d'Écran de l'Extension

screenshot
screenshot

Télécharger le fichier CRX de l'extension Briefly

Téléchargez les fichiers d'extension Briefly au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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.                    

Informations de Base sur l'Extension

Nom Briefly Briefly
ID koceodkdlldkaoenidaolomgcjnaoolf
URL Officiel https://chromewebstore.google.com/detail/briefly/koceodkdlldkaoenidaolomgcjnaoolf
Description Briefly allows you to save time by generating summaries of texts in websites using an advanced GPT-3 AI algorithm.
Taille du Fichier 95.5 KB
Nombre d'Installations 139
Version Actuelle 1.0.1
Dernière Mise à Jour 2022-02-14
Date de Publication 2022-01-17
Évaluation 3.00/5 Total 3 Évaluations
Développeur Briefly
Email [email protected]
Type de Paiement free
Site Web de l'Extension https://getbriefly.co
Langues Prises en Charge 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"
            ]
        }
    ]
}