WebextLLM

Browser-native LLMs at your fingertips

WebextLLMคืออะไร?

WebextLLM เป็นส่วนขยายของ Chrome ที่พัฒนาโดย idosalomon และคุณลักษณะหลักของมันคือ "Browser-native LLMs at your fingertips"

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

screenshot
screenshot
screenshot
screenshot
screenshot

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

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

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

                        Unleash the Power of AI in Your Browser!

WebextLLM is the first extension to embed large language models in the browser. The LLMs run in an isolated environment within the extension with zero configuration or external dependencies, making it the easiest method to run local inference on any platform (with 7 supported LLMs for you to choose from!).
Experience a growing ecosystem of AI-based applications (with window.ai) as a user, and fuel it further as an application developer.

Key Features
* Own your models: Experience the freedom of owning your LLMs, enjoying a limitless, offline, private, and secure environment
* Control: Exercise complete control over access to your LLM, granting or denying permission to any application at any time
* Visibility: Gain insights into the history of prompts and responses to your model across different applications

Why should you use WebextLLM? It's:
1. Free: The model runs on your hardware, eliminating the need for costly service providers
2. Private: Your data remains securely on your device, safeguarding your privacy
3. Unlimited: Take full control of the model without any quotas, censorship, or limitations
4. Highly available: Overcome limitations of internet connectivity and cloud-based LLM availability

Disclaimer
This extension is a proof-of-concept using experimental technologies. It is not recommended for production. By using this software, you assume all risks, including potential data loss, system failure, or other issues. The models and applications featured in this project are not endorsed by the author and the author is not responsible for any issues arising from their use.                    

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

ชื่อ WebextLLM WebextLLM
ID chbepdchbogmcmhilpfmijbkfpplgnoh
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/webextllm/chbepdchbogmcmhilpfmijbkfpplgnoh
คำอธิบาย Browser-native LLMs at your fingertips
ขนาดไฟล์ 12.02 MB
จำนวนการติดตั้ง 45
เวอร์ชันปัจจุบัน 0.3.1
อัปเดตครั้งล่าสุด 2023-10-04
วันที่เผยแพร่ 2023-06-02
ผู้พัฒนา idosalomon
อีเมล [email protected]
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://github.com/idosal/WebextLLM
URL หน้าช่วยเหลือ https://github.com/idosal/WebextLLM/issues
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "icons": {
        "16": "icon16.plasmo.f58704f6.png",
        "32": "icon32.plasmo.c2d2aa82.png",
        "48": "icon48.plasmo.8db365f9.png",
        "64": "icon64.plasmo.a671a8cd.png",
        "128": "icon128.plasmo.f86e3ae6.png"
    },
    "manifest_version": 3,
    "action": {
        "default_icon": {
            "16": "icon16.plasmo.f58704f6.png",
            "32": "icon32.plasmo.c2d2aa82.png",
            "48": "icon48.plasmo.8db365f9.png",
            "64": "icon64.plasmo.a671a8cd.png",
            "128": "icon128.plasmo.f86e3ae6.png"
        },
        "default_popup": "popup.html"
    },
    "version": "0.3.1",
    "author": "Ido Salomon ",
    "name": "WebextLLM",
    "description": "Browser-native LLMs at your fingertips",
    "background": {
        "service_worker": "static\/background\/index.js"
    },
    "permissions": [
        "storage",
        "scripting",
        "offscreen",
        "idle"
    ],
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "relay.85e7c16a.js"
            ],
            "run_at": "document_start",
            "css": []
        }
    ],
    "content_security_policy": {
        "extension_pages": "script-src 'self' 'wasm-unsafe-eval' http:\/\/localhost; object-src 'self';"
    },
    "web_accessible_resources": [
        {
            "resources": [
                "assets\/*"
            ],
            "matches": []
        }
    ],
    "host_permissions": [
        "file:\/\/*\/*",
        "https:\/\/*\/*",
        "http:\/\/*\/*"
    ],
    "sandbox": {
        "pages": [
            "sandboxes\/utils.html",
            "sandboxes\/webllm.html"
        ]
    }
}