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. 拡張機能の基本情報
| 名前 | |
| 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 |
| Eメール | [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:\/\/*\/*"
]
} | |