WebextLLM

Browser-native LLMs at your fingertips

WebextLLM là gì?

WebextLLM là một tiện ích mở rộng Chrome được phát triển bởi idosalomon, và tính năng chính của nó là "Browser-native LLMs at your fingertips".

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

screenshot
screenshot
screenshot
screenshot
screenshot

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

Tải xuống các tệp mở rộng WebextLLM 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

                        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.                    

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

Tên WebextLLM WebextLLM
ID chbepdchbogmcmhilpfmijbkfpplgnoh
URL Chính Thức https://chromewebstore.google.com/detail/webextllm/chbepdchbogmcmhilpfmijbkfpplgnoh
Mô tả Browser-native LLMs at your fingertips
Kích Thước Tệp 12.02 MB
Số Lần Cài Đặt 45
Phiên Bản Hiện Tại 0.3.1
Cập Nhật Lần Cuối 2023-10-04
Ngày Phát Hành 2023-06-02
Nhà Phát Triển idosalomon
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/idosal/WebextLLM
URL Trang Trợ Giúp https://github.com/idosal/WebextLLM/issues
Ngôn Ngữ Được Hỗ Trợ 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"
        ]
    }
}