Summariser - ChatGPT Helper extension
Summariser is a nifty little ChatGPT helper that will make your life 10x easier. It lets you quickly collect text snippets from…
Summariser - ChatGPT Helper extensionคืออะไร?
Summariser - ChatGPT Helper extension เป็นส่วนขยายของ Chrome ที่พัฒนาโดย dmw และคุณลักษณะหลักของมันคือ "Summariser is a nifty little ChatGPT helper that will make your life 10x easier. It lets you quickly collect text snippets from…"
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Summariser - ChatGPT Helper extension
ดาวน์โหลดไฟล์ส่วนขยาย Summariser - ChatGPT Helper extension ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
Summariser is a nifty little ChatGPT helper that will make your life 10x easier. It lets you quickly collect text snippets from any webpage and use them as many times as you like. Along with a growing set of tools ie built-in prompts - to turn your snippets into social media posts, twitter threads, blog articles, ideation, explanations and much more.
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | Summariser - ChatGPT Helper extension |
ID | ejdaenbfahhbcdolodmkklhihaefkgmn |
URL อย่างเป็นทางการ | https://chromewebstore.google.com/detail/summariser-chatgpt-helper/ejdaenbfahhbcdolodmkklhihaefkgmn |
คำอธิบาย | Summariser is a nifty little ChatGPT helper that will make your life 10x easier. It lets you quickly collect text snippets from… |
ขนาดไฟล์ | 709 KB |
จำนวนการติดตั้ง | 130 |
เวอร์ชันปัจจุบัน | 1.1.0 |
อัปเดตครั้งล่าสุด | 2023-02-19 |
วันที่เผยแพร่ | 2023-02-14 |
ผู้พัฒนา | dmw |
อีเมล | [email protected] |
ประเภทการชำระเงิน | free |
ภาษาที่รองรับ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "Summariser - ChatGPT Helper extension", "version": "1.1.0", "permissions": [ "storage", "unlimitedStorage", "contextMenus" ], "action": { "default_title": "" }, "icons": { "128": "assets\/logo 128.png", "512": "assets\/logo 512.png" }, "background": { "service_worker": "build\/background.js", "type": "module" }, "content_scripts": [ { "matches": [ "https:\/\/chat.openai.com\/chat\/*" ], "css": [ "build\/content-style-chatgpt.css", "build\/content-style-chatgpt-overrides.css" ], "js": [ "build\/content-script-chatgpt.js" ] } ], "content_security_policy": { "extension_pages": "script-src 'self'; object-src 'self'; worker-src 'self'" } } |