Briefly

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

Briefly là gì?

Briefly là một tiện ích mở rộng Chrome được phát triển bởi Briefly, và tính năng chính của nó là "Briefly allows you to save time by generating summaries of texts in websites using an advanced GPT-3 AI algorithm.".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng Briefly

Tải xuống các tệp mở rộng Briefly dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Briefly Briefly
ID koceodkdlldkaoenidaolomgcjnaoolf
URL Chính Thức https://chromewebstore.google.com/detail/briefly/koceodkdlldkaoenidaolomgcjnaoolf
Mô tả Briefly allows you to save time by generating summaries of texts in websites using an advanced GPT-3 AI algorithm.
Kích Thước Tệp 95.5 KB
Số Lần Cài Đặt 139
Phiên Bản Hiện Tại 1.0.1
Cập Nhật Lần Cuối 2022-02-14
Ngày Phát Hành 2022-01-17
Đánh Giá 3.00/5 Tổng số 3 Đánh Giá
Nhà Phát Triển Briefly
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://getbriefly.co
Ngôn Ngữ Được Hỗ Trợ 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"
            ]
        }
    ]
}