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 파일 다운로드

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

확장 프로그램 사용 설명서

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