Kalami
This is a Chrome extension for Kalami
Wat is Kalami?
Kalami is een Chrome-extensie ontwikkeld door omerhassan299, en de belangrijkste functie is "This is a Chrome extension for Kalami".
Extensie Screenshots
Download het CRX-bestand van de extensie Kalami
Download Kalami-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.
Instructies voor het Gebruik van de Extensie
Chat with AI about your files, data scraped from public sites, github repositories, youtube videos and more.
Basisinformatie over de Extensie
Naam | Kalami |
ID | pemeeapcjmidheilnfejobhoedjfbkfc |
Officiële URL | https://chromewebstore.google.com/detail/kalami/pemeeapcjmidheilnfejobhoedjfbkfc |
Beschrijving | This is a Chrome extension for Kalami |
Bestandsgrootte | 1.69 MB |
Aantal Installaties | 31 |
Huidige Versie | 1.0.0 |
Laatst Bijgewerkt | 2023-08-20 |
Publicatiedatum | 2023-08-20 |
Beoordeling | 5.00/5 Totaal 1 Beoordelingen |
Ontwikkelaar | omerhassan299 |
[email protected] | |
Betalingswijze | free |
Extensiewebsite | https://kalami.ai |
URL van de Privacybeleid Pagina | https://splendorous-conkies-65e735.netlify.app |
Ondersteunde Talen | 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:\/\/*\/*" ] } |