CassidyAI

Bring CassidyAI with you anywhere.

CassidyAI란 무엇입니까?

CassidyAI은(는) https://cassidyai.com에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Bring CassidyAI with you anywhere."입니다.

확장 프로그램 스크린샷

screenshot
screenshot

CassidyAI 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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": [
                "*:\/\/*\/*"
            ]
        }
    ]
}