Mage

Your own magical AI sidekick for the web

Cos'è Mage?

Mage è un'estensione di Chrome sviluppata da https://usemage.com, e la sua funzione principale è "Your own magical AI sidekick for the web".

Screenshot dell'Estensione

screenshot
screenshot
screenshot

Scarica il file CRX dell'estensione Mage

Scarica i file di estensione Mage 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

                        Access multiple different AI models (WITH VISION) in your chrome sidebar. 

Effortlessly integrate ChatGPT and other AI functionalities right into your daily tasks—be it emailing, improving writing, researching the web, or translating text.                    

Informazioni di Base sull'Estensione

Nome Mage Mage
ID doimpmihjkdfbecokijaioepaedfbhdm
URL Ufficiale https://chromewebstore.google.com/detail/mage/doimpmihjkdfbecokijaioepaedfbhdm
Descrizione Your own magical AI sidekick for the web
Dimensione del File 1.64 MB
Conteggio Installazioni 45
Versione Corrente 0.2
Ultimo Aggiornamento 2023-12-13
Data di Pubblicazione 2023-12-02
Sviluppatore https://usemage.com
Email [email protected]
Tipo di Pagamento in_app
URL della Pagina della Politica sulla Privacy https://www.chatshape.com/privacy
Lingue Supportate en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Mage",
    "version": "0.2",
    "description": "Your own magical AI sidekick for the web",
    "options_ui": {
        "page": "src\/pages\/options\/index.html"
    },
    "background": {
        "service_worker": "src\/pages\/background\/index.js",
        "type": "module"
    },
    "action": {
        "default_icon": "icon-34.png"
    },
    "devtools_page": "src\/pages\/devtools\/index.html",
    "side_panel": {
        "default_path": "src\/pages\/panel\/index.html"
    },
    "icons": {
        "128": "icon-128.png"
    },
    "permissions": [
        "sidePanel",
        "scripting",
        "activeTab",
        "storage"
    ],
    "host_permissions": [
        ""
    ],
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*",
                ""
            ],
            "js": [
                "src\/pages\/content\/index.js"
            ],
            "css": [
                "contentStyle.css"
            ]
        }
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "contentStyle.css",
                "icon-128.png",
                "icon-34.png"
            ],
            "matches": []
        }
    ]
}