Browser Copilot

Harness existing or custom AI assistants to streamline your everyday web application tasks

Browser Copilotคืออะไร?

Browser Copilot เป็นส่วนขยายของ Chrome ที่พัฒนาโดย abstracta และคุณลักษณะหลักของมันคือ "Harness existing or custom AI assistants to streamline your everyday web application tasks"

ภาพหน้าจอของส่วนขยาย

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Browser Copilot

ดาวน์โหลดไฟล์ส่วนขยาย Browser Copilot ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        Harness existing or custom AI assistants to streamline your everyday web application tasks.

Enhance your web browsing with Browser Copilot, an open-source Chrome extension that allows you to easily integrate your own AI assistants and use them while browsing the web.

How does it work?

1) If you want to use a third-party copilot, you just need to add the URL to where the copilot is hosted and start using it right away. (Soon we will have a list of third-party copilots available)
2) If you want build your own copilot, this extension gives you a framework and UI to easily integrate it to Google Chrome.

Join our dynamic open-source community and leverage the shared intelligence of copilots developed by experts and enthusiasts.                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ Browser Copilot Browser Copilot
ID cbhcdfecmeoaikjoapjkkpalaehmbogp
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/browser-copilot/cbhcdfecmeoaikjoapjkkpalaehmbogp
คำอธิบาย Harness existing or custom AI assistants to streamline your everyday web application tasks
ขนาดไฟล์ 868 KB
จำนวนการติดตั้ง 65
เวอร์ชันปัจจุบัน 0.7.3
อัปเดตครั้งล่าสุด 2024-02-09
วันที่เผยแพร่ 2023-12-20
คะแนน 5.00/5 รวมทั้งหมด 1 คะแนน
ผู้พัฒนา abstracta
อีเมล [email protected]
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://github.com/abstracta/browser-copilot
URL หน้าช่วยเหลือ https://github.com/abstracta/browser-copilot/issues
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Browser Copilot",
    "description": "Harness existing or custom AI assistants to streamline your everyday web application tasks",
    "version": "0.7.3",
    "key": "MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAqP\/BkxnfnNstFPmoRNfwMlcke2Es8xPyN9kq6yHyBk1iA3PDb6OM2Ax1K8BsXMpDH3WSgviMIgrgMVorK+B\/YVW9nvKwiWFqgb7pFsB6AQCTEz0gQMr6wZkafott+2JrvOPzratByQcNaz28YWaQZYLtwkFd3DSaz8pawOOv9a2lKHivZqAHpmcUq3hxgcwvkAqJjRadHHRn8fXBsjTqneFXcE0rgDxr3Zm1WTcm4ybTm8JAPRZ+eSoTiFBmBCvrztUtpNNODGs3IE27wLXEMrJ5Pq3vH4Z3PBJUg3Ho5bd9EGTmth5U2WcQ2B+EwVpiuaSc33RkXjltan2ly7evrQIDAQAB",
    "manifest_version": 3,
    "icons": {
        "16": "icon\/16.png",
        "32": "icon\/32.png",
        "48": "icon\/48.png",
        "96": "icon\/96.png",
        "128": "icon\/128.png"
    },
    "permissions": [
        "activeTab",
        "storage",
        "contextMenus",
        "webRequest",
        "declarativeNetRequest",
        "clipboardWrite",
        "identity"
    ],
    "host_permissions": [
        "*:\/\/*\/"
    ],
    "background": {
        "service_worker": "src\/background.js"
    },
    "action": [],
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "src\/side-panel.js"
            ]
        }
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "src\/index.html"
            ],
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ]
        }
    ]
}