AI Browser Assistant

OpenAI powered Assistant

什么是AI Browser Assistant?

AI Browser Assistant是由ericpelland94开发的Chrome扩展程序,该扩展的主要功能是“OpenAI powered Assistant”。

扩展截图

screenshot
screenshot
screenshot

下载AI Browser Assistant扩展crx文件

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

扩展使用说明

                        Are you tired of wasting time searching for the information you need online? The AI Browser Assistant is here to help! With just a few clicks, you can translate, summarize, complete, respond, and explain any selected or highlighted text using the new menu in the right-click context menu. This powerful plugin uses the latest AI technology from OpenAI, including the highly advanced ChatGPT3 model, to provide you with fast and accurate answers to your questions. And if you have a question that can't be easily answered, simply use the built-in chat feature to directly communicate with the AI model.

But that's not all! The AI Browser Assistant also lets you customize your experience by modifying the model and settings in the plugin's settings. And getting started is easy - just add your OpenAI API key and you're ready to go. So why wait? Start using the AI Browser Assistant today and take your browsing to the next level!                    

扩展基本信息

名称 AI Browser Assistant AI Browser Assistant
ID acnnfeagheddkehglaipegkdekelpilf
官方URL https://chromewebstore.google.com/detail/ai-browser-assistant/acnnfeagheddkehglaipegkdekelpilf
简介 OpenAI powered Assistant
文件大小 806 KB
安装次数 77
当前版本 0.0.1
更新时间 2023-01-11
上架时间 2023-01-10
开发者 ericpelland94
电子邮箱 [email protected]
付费类型 free
扩展官网 https://git.tinyerc.com/ericpelland/AI_Assistant/
支持的语言 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "AI Browser Assistant",
    "description": "OpenAI powered Assistant",
    "version": "0.0.1",
    "permissions": [
        "storage",
        "contextMenus",
        "activeTab"
    ],
    "host_permissions": [
        "https:\/\/api.openai.com\/*",
        ""
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "fix.css"
            ],
            "matches": [
                ""
            ]
        }
    ],
    "background": {
        "service_worker": "background.js"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "content.js"
            ],
            "css": [
                "fix.css"
            ]
        }
    ],
    "action": {
        "default_icon": "icon.png",
        "default_popup": "popup.html"
    },
    "icons": {
        "16": "favicon-16x16.png",
        "32": "favicon-32x32.png"
    }
}