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 مع الأصدقاء لتثبيت الامتدادات بسهولة.

تعليمات استخدام التمديد

                        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
عنوان صفحة المساعدة 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"
        ]
    }
}