SummarizeIt
Summarize any webpage with GPT-3 API.
什麼是SummarizeIt?
SummarizeIt是由0xasten開發的Chrome擴展程式,該擴展的主要功能是“Summarize any webpage with GPT-3 API.”。
擴展截圖
下載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. 擴展基本資訊
| 名稱 | |
| ID | dpnomnajbhmkdinnklciapkgcacihmnl |
| 官方網址 | 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"
}
} | |