CassidyAI

Bring CassidyAI with you anywhere.

Cos'è CassidyAI?

CassidyAI è un'estensione di Chrome sviluppata da https://cassidyai.com, e la sua funzione principale è "Bring CassidyAI with you anywhere.".

Screenshot dell'Estensione

screenshot
screenshot

Scarica il file CRX dell'estensione CassidyAI

Scarica i file di estensione CassidyAI in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

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

Informazioni di Base sull'Estensione

Nome CassidyAI CassidyAI
ID kmkfkldjbchieogojgcbalncifahjogg
URL Ufficiale https://chromewebstore.google.com/detail/cassidyai/kmkfkldjbchieogojgcbalncifahjogg
Descrizione Bring CassidyAI with you anywhere.
Dimensione del File 381 KB
Conteggio Installazioni 250
Versione Corrente 1.2.1
Ultimo Aggiornamento 2024-02-08
Data di Pubblicazione 2023-07-12
Valutazione 5.00/5 Totale 2 Valutazioni
Sviluppatore https://cassidyai.com
Email [email protected]
Tipo di Pagamento free
URL della Pagina della Politica sulla Privacy https://app.cassidyai.com/privacy.html
Lingue Supportate 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": [
                "*:\/\/*\/*"
            ]
        }
    ]
}