Kalami
This is a Chrome extension for Kalami
Kalamiคืออะไร?
Kalami เป็นส่วนขยายของ Chrome ที่พัฒนาโดย omerhassan299 และคุณลักษณะหลักของมันคือ "This is a Chrome extension for Kalami"
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Kalami
ดาวน์โหลดไฟล์ส่วนขยาย Kalami ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
Chat with AI about your files, data scraped from public sites, github repositories, youtube videos and more.
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | Kalami |
ID | pemeeapcjmidheilnfejobhoedjfbkfc |
URL อย่างเป็นทางการ | https://chromewebstore.google.com/detail/kalami/pemeeapcjmidheilnfejobhoedjfbkfc |
คำอธิบาย | This is a Chrome extension for Kalami |
ขนาดไฟล์ | 1.69 MB |
จำนวนการติดตั้ง | 31 |
เวอร์ชันปัจจุบัน | 1.0.0 |
อัปเดตครั้งล่าสุด | 2023-08-20 |
วันที่เผยแพร่ | 2023-08-20 |
คะแนน | 5.00/5 รวมทั้งหมด 1 คะแนน |
ผู้พัฒนา | omerhassan299 |
อีเมล | [email protected] |
ประเภทการชำระเงิน | free |
เว็บไซต์ส่วนขยาย | https://kalami.ai |
URL หน้านโยบายความเป็นส่วนตัว | https://splendorous-conkies-65e735.netlify.app |
ภาษาที่รองรับ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "version": "1.0.0", "manifest_version": 3, "name": "Kalami", "description": "This is a Chrome extension for Kalami", "action": { "default_popup": "app\/popup\/popup.html", "default_title": "Mellon", "default_icon": { "16": ".\/assets\/logo.png", "32": ".\/assets\/logo.png", "48": ".\/assets\/logo.png", "128": ".\/assets\/logo.png" } }, "permissions": [ "tabs", "activeTab", "scripting", "storage" ], "background": { "service_worker": "background.js" }, "content_scripts": [ { "matches": [ "https:\/\/chat.openai.com\/*" ], "run_at": "document_end", "js": [ ".\/static\/js\/main.js" ], "css": [ ".\/templates\/daisyui_v2.51.5.css", ".\/templates\/index.min.css" ] }, { "matches": [ "https:\/\/kalami.ai\/*" ], "run_at": "document_end", "js": [ ".\/auth\/checkSession.js" ] } ], "web_accessible_resources": [ { "matches": [ "https:\/\/chat.openai.com\/*" ], "resources": [ "linkedin\/templates\/*", "assets\/*", "static\/*" ] } ], "host_permissions": [ "https:\/\/*\/*", "http:\/\/*\/*" ] } |