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"
        ]
    }
}