CassidyAI

Bring CassidyAI with you anywhere.

CassidyAI là gì?

CassidyAI là một tiện ích mở rộng Chrome được phát triển bởi https://cassidyai.com, và tính năng chính của nó là "Bring CassidyAI with you anywhere.".

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

screenshot
screenshot

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

Tải xuống các tệp mở rộng CassidyAI 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

                        Use CassidyAI directly from any tab. Engage with the content on the page by selecting text, and pressing the Cassidy logo.                    

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

Tên CassidyAI CassidyAI
ID kmkfkldjbchieogojgcbalncifahjogg
URL Chính Thức https://chromewebstore.google.com/detail/cassidyai/kmkfkldjbchieogojgcbalncifahjogg
Mô tả Bring CassidyAI with you anywhere.
Kích Thước Tệp 381 KB
Số Lần Cài Đặt 250
Phiên Bản Hiện Tại 1.2.1
Cập Nhật Lần Cuối 2024-02-08
Ngày Phát Hành 2023-07-12
Đánh Giá 5.00/5 Tổng số 2 Đánh Giá
Nhà Phát Triển https://cassidyai.com
Email [email protected]
Loại Thanh Toán free
URL Trang Chính Sách Bảo Mật https://app.cassidyai.com/privacy.html
Ngôn Ngữ Được Hỗ Trợ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "CassidyAI",
    "version": "1.2.1",
    "description": "Bring CassidyAI with you anywhere.",
    "background": {
        "service_worker": "src\/pages\/background\/index.js",
        "type": "module"
    },
    "action": {
        "default_title": "Cassidy",
        "default_icon": "logo-3color.png"
    },
    "icons": {
        "16": "icons\/icon16.png",
        "32": "icons\/icon32.png",
        "48": "icons\/icon48.png",
        "128": "icons\/icon128.png"
    },
    "permissions": [
        "sidePanel",
        "activeTab"
    ],
    "side_panel": {
        "default_path": "src\/pages\/panel\/index.html"
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*",
                ""
            ],
            "js": [
                "src\/pages\/content\/index.js"
            ],
            "css": [
                "contentStyle.css"
            ]
        }
    ],
    "host_permissions": [
        ""
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "assets\/js\/*.js",
                "assets\/css\/*.css",
                "contentStyle.css",
                "logo-3color.png",
                "logo-white.png"
            ],
            "matches": [
                "*:\/\/*\/*"
            ]
        }
    ]
}