Kalami
This is a Chrome extension for Kalami
Co to jest Kalami?
Kalami to rozszerzenie Chrome opracowane przez omerhassan299, a jego główną funkcją jest „This is a Chrome extension for Kalami”.
Zrzuty ekranu rozszerzenia
Pobierz plik CRX rozszerzenia Kalami
Pobierz pliki rozszerzeń Kalami w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.
Instrukcja Użytkowania Rozszerzenia
Chat with AI about your files, data scraped from public sites, github repositories, youtube videos and more.
Podstawowe informacje o rozszerzeniu
Nazwa | Kalami |
ID | pemeeapcjmidheilnfejobhoedjfbkfc |
Oficjalny URL | https://chromewebstore.google.com/detail/kalami/pemeeapcjmidheilnfejobhoedjfbkfc |
Opis | This is a Chrome extension for Kalami |
Rozmiar pliku | 1.69 MB |
Liczba instalacji | 31 |
Aktualna Wersja | 1.0.0 |
Ostatnia Aktualizacja | 2023-08-20 |
Data Publikacji | 2023-08-20 |
Ocena | 5.00/5 Łącznie 1 Oceny |
Deweloper | omerhassan299 |
[email protected] | |
Typ Płatności | free |
Strona Rozszerzenia | https://kalami.ai |
Adres URL Strony Polityki Prywatności | https://splendorous-conkies-65e735.netlify.app |
Obsługiwane Języki | 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:\/\/*\/*" ] } |