Kalami
This is a Chrome extension for Kalami
What is Kalami?
Kalami is a Chrome extension developed by omerhassan299, and its main feature is "This is a Chrome extension for Kalami".
Extension Screenshots
Download Kalami Extension CRX File
Download Kalami extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
Chat with AI about your files, data scraped from public sites, github repositories, youtube videos and more.
Extension Basic Information
Name | Kalami |
ID | pemeeapcjmidheilnfejobhoedjfbkfc |
Official URL | https://chromewebstore.google.com/detail/kalami/pemeeapcjmidheilnfejobhoedjfbkfc |
Description | This is a Chrome extension for Kalami |
File Size | 1.69 MB |
Installation Count | 31 |
Current Version | 1.0.0 |
Last Updated | 2023-08-20 |
Publish Date | 2023-08-20 |
Rating | 5.00/5 Total 1 Ratings |
Developer | omerhassan299 |
[email protected] | |
Payment Type | free |
Extension Website | https://kalami.ai |
Privacy Policy Page URL | https://splendorous-conkies-65e735.netlify.app |
Supported Languages | 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:\/\/*\/*" ] } |