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"
            ]
        }
    ]
}