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. Основная информация о расширении
| Название | |
| 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:\/\/*\/*"
]
} | |