Kalami

This is a Chrome extension for Kalami

Kalami là gì?

Kalami là một tiện ích mở rộng Chrome được phát triển bởi omerhassan299, và tính năng chính của nó là "This is a Chrome extension for Kalami".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng Kalami

Tải xuống các tệp mở rộng Kalami dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        Chat with AI about your files, data scraped from public sites, github repositories, youtube videos and more.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Kalami Kalami
ID pemeeapcjmidheilnfejobhoedjfbkfc
URL Chính Thức https://chromewebstore.google.com/detail/kalami/pemeeapcjmidheilnfejobhoedjfbkfc
Mô tả This is a Chrome extension for Kalami
Kích Thước Tệp 1.69 MB
Số Lần Cài Đặt 31
Phiên Bản Hiện Tại 1.0.0
Cập Nhật Lần Cuối 2023-08-20
Ngày Phát Hành 2023-08-20
Đánh Giá 5.00/5 Tổng số 1 Đánh Giá
Nhà Phát Triển omerhassan299
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://kalami.ai
URL Trang Chính Sách Bảo Mật https://splendorous-conkies-65e735.netlify.app
Ngôn Ngữ Được Hỗ Trợ 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:\/\/*\/*"
    ]
}