tldr.chrome
Summarize any text
tldr.chromeคืออะไร?
tldr.chrome เป็นส่วนขยายของ Chrome ที่พัฒนาโดย ignatif และคุณลักษณะหลักของมันคือ "Summarize any text"
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย tldr.chrome
ดาวน์โหลดไฟล์ส่วนขยาย tldr.chrome ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
This extension uses DistilBERT model trained on CNN news dataset to produce text summaries 1. Select text 2. Double hit "Enter" 3. Get text summary
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | tldr.chrome |
ID | khkpnmmnkenbelkljphmpbjgbmobgonn |
URL อย่างเป็นทางการ | https://chromewebstore.google.com/detail/tldrchrome/khkpnmmnkenbelkljphmpbjgbmobgonn |
คำอธิบาย | Summarize any text |
ขนาดไฟล์ | 332 KB |
จำนวนการติดตั้ง | 140 |
เวอร์ชันปัจจุบัน | 0.2 |
อัปเดตครั้งล่าสุด | 2021-10-15 |
วันที่เผยแพร่ | 2021-08-25 |
คะแนน | 3.00/5 รวมทั้งหมด 1 คะแนน |
ผู้พัฒนา | ignatif |
อีเมล | [email protected] |
ประเภทการชำระเงิน | in_app |
ภาษาที่รองรับ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "tldr.chrome", "description": "Summarize any text", "version": "0.2", "manifest_version": 3, "background": { "service_worker": "background.js" }, "icons": { "256": "logo\/logo.png" }, "permissions": [ "identity", "storage" ], "content_scripts": [ { "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "css": [ "tldr.css" ], "js": [ "tldr.js" ] }, { "matches": [ "http:\/\/localhost:4000\/tldr\/payment\/success", "https:\/\/www.ignatif.me\/tldr\/payment\/success" ], "js": [ "payment_success.js" ] } ], "oauth2": { "client_id": "50503379753-ppcd44vk846li1je5cpk096ul9k9nau7.apps.googleusercontent.com", "scopes": [ "openid" ] }, "action": { "default_icon": "logo\/logo.png", "default_title": "tl;dr chrome", "default_popup": ".\/build\/index.html" }, "host_permissions": [ "https:\/\/ignatif.me\/*" ] } |