Mage

Your own magical AI sidekick for the web

什么是Mage?

Mage是由https://usemage.com开发的Chrome扩展程序,该扩展的主要功能是“Your own magical AI sidekick for the web”。

扩展截图

screenshot
screenshot
screenshot

下载Mage扩展crx文件

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

扩展使用说明

                        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.                    

扩展基本信息

名称 Mage Mage
ID doimpmihjkdfbecokijaioepaedfbhdm
官方URL https://chromewebstore.google.com/detail/mage/doimpmihjkdfbecokijaioepaedfbhdm
简介 Your own magical AI sidekick for the web
文件大小 1.64 MB
安装次数 45
当前版本 0.2
更新时间 2023-12-13
上架时间 2023-12-02
开发者 https://usemage.com
电子邮箱 [email protected]
付费类型 in_app
隐私政策页面URL https://www.chatshape.com/privacy
支持的语言 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": []
        }
    ]
}