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 |
官方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:\/\/*\/*" ] } |