SummarizeIt
Summarize any webpage with GPT-3 API.
SummarizeItคืออะไร?
SummarizeIt เป็นส่วนขยายของ Chrome ที่พัฒนาโดย 0xasten และคุณลักษณะหลักของมันคือ "Summarize any webpage with GPT-3 API."
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย SummarizeIt
ดาวน์โหลดไฟล์ส่วนขยาย 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 |
| 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"
}
} | |