Mage

Your own magical AI sidekick for the web

Mage là gì?

Mage là một tiện ích mở rộng Chrome được phát triển bởi https://usemage.com, và tính năng chính của nó là "Your own magical AI sidekick for the web".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot
screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng Mage

Tải xuống các tệp mở rộng Mage dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Mage Mage
ID doimpmihjkdfbecokijaioepaedfbhdm
URL Chính Thức https://chromewebstore.google.com/detail/mage/doimpmihjkdfbecokijaioepaedfbhdm
Mô tả Your own magical AI sidekick for the web
Kích Thước Tệp 1.64 MB
Số Lần Cài Đặt 45
Phiên Bản Hiện Tại 0.2
Cập Nhật Lần Cuối 2023-12-13
Ngày Phát Hành 2023-12-02
Nhà Phát Triển https://usemage.com
Email [email protected]
Loại Thanh Toán in_app
URL Trang Chính Sách Bảo Mật https://www.chatshape.com/privacy
Ngôn Ngữ Được Hỗ Trợ 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": []
        }
    ]
}