Briefly

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

什麼是Briefly?

Briefly是由Briefly開發的Chrome擴展程式,該擴展的主要功能是“Briefly allows you to save time by generating summaries of texts in websites using an advanced GPT-3 AI algorithm.”。

擴展截圖

screenshot
screenshot

下載Briefly擴展crx文件

下載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
官方網址 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"
            ]
        }
    ]
}