SummarizeIt

Summarize any webpage with GPT-3 API.

什么是SummarizeIt?

SummarizeIt是由0xasten开发的Chrome扩展程序,该扩展的主要功能是“Summarize any webpage with GPT-3 API.”。

扩展截图

screenshot
screenshot
screenshot
screenshot
screenshot

下载SummarizeIt扩展crx文件

下载SummarizeIt扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        Summarize is a powerful and easy-to-use Chrome extension that lets you quickly obtain a summary of content. Powered by advanced natural language processing technology, Summarize uses GPT-3 API to generate accurate and concise summaries of the most important information, so you can get the gist of it in seconds.                    

扩展基本信息

名称 SummarizeIt SummarizeIt
ID dpnomnajbhmkdinnklciapkgcacihmnl
官方URL https://chromewebstore.google.com/detail/summarizeit/dpnomnajbhmkdinnklciapkgcacihmnl
简介 Summarize any webpage with GPT-3 API.
文件大小 2.71 MB
安装次数 95
当前版本 2.0
更新时间 2023-06-15
上架时间 2023-02-27
开发者 0xasten
电子邮箱 [email protected]
付费类型 free
隐私政策页面URL https://sites.google.com/view/0xasten-privacy-policy
支持的语言 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "SummarizeIt",
    "version": "2.0",
    "description": "Summarize any webpage with GPT-3 API.",
    "icons": {
        "16": ".\/img\/icons\/icon16.png",
        "32": ".\/img\/icons\/icon32.png",
        "48": ".\/img\/icons\/icon48.png",
        "128": ".\/img\/icons\/icon128.png"
    },
    "permissions": [
        "storage"
    ],
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "content.js",
                "content_selection.js"
            ]
        }
    ],
    "action": {
        "default_icon": ".\/img\/icons\/icon32.png",
        "default_title": "Summarize Extension",
        "default_popup": "popup.html"
    },
    "background": {
        "service_worker": "background.js"
    }
}