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 مع الأصدقاء لتثبيت الامتدادات بسهولة.
تعليمات استخدام التمديد
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 |
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 |
عنوان صفحة سياسة الخصوصية | 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" } } |