Kalami
This is a Chrome extension for Kalami
什麼是Kalami?
Kalami是由omerhassan299開發的Chrome擴展程式,該擴展的主要功能是“This is a Chrome extension for Kalami”。
擴展截圖
下載Kalami擴展crx文件
下載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 |
官方網址 | 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:\/\/*\/*" ] } |