CassidyAI

Bring CassidyAI with you anywhere.

什么是CassidyAI?

CassidyAI是由https://cassidyai.com开发的Chrome扩展程序,该扩展的主要功能是“Bring CassidyAI with you anywhere.”。

扩展截图

screenshot
screenshot

下载CassidyAI扩展crx文件

下载CassidyAI扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

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

扩展基本信息

名称 CassidyAI CassidyAI
ID kmkfkldjbchieogojgcbalncifahjogg
官方URL https://chromewebstore.google.com/detail/cassidyai/kmkfkldjbchieogojgcbalncifahjogg
简介 Bring CassidyAI with you anywhere.
文件大小 381 KB
安装次数 250
当前版本 1.2.1
更新时间 2024-02-08
上架时间 2023-07-12
评分 5.00/5 共2次评分
开发者 https://cassidyai.com
电子邮箱 [email protected]
付费类型 free
隐私政策页面URL https://app.cassidyai.com/privacy.html
支持的语言 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": [
                "*:\/\/*\/*"
            ]
        }
    ]
}