WebextLLM

Browser-native LLMs at your fingertips

Cos'è WebextLLM?

WebextLLM è un'estensione di Chrome sviluppata da idosalomon, e la sua funzione principale è "Browser-native LLMs at your fingertips".

Screenshot dell'Estensione

screenshot
screenshot
screenshot
screenshot
screenshot

Scarica il file CRX dell'estensione WebextLLM

Scarica i file di estensione WebextLLM in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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.                    

Informazioni di Base sull'Estensione

Nome WebextLLM WebextLLM
ID chbepdchbogmcmhilpfmijbkfpplgnoh
URL Ufficiale https://chromewebstore.google.com/detail/webextllm/chbepdchbogmcmhilpfmijbkfpplgnoh
Descrizione Browser-native LLMs at your fingertips
Dimensione del File 12.02 MB
Conteggio Installazioni 45
Versione Corrente 0.3.1
Ultimo Aggiornamento 2023-10-04
Data di Pubblicazione 2023-06-02
Sviluppatore idosalomon
Email [email protected]
Tipo di Pagamento free
Sito Web dell'Estensione https://github.com/idosal/WebextLLM
URL della Pagina di Aiuto https://github.com/idosal/WebextLLM/issues
Lingue Supportate 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"
        ]
    }
}