Hugging Face Model Size

Displays model size next to Hugging Face model links.

Wat is Hugging Face Model Size?

Hugging Face Model Size is een Chrome-extensie ontwikkeld door AI Northstar Tech, en de belangrijkste functie is "Displays model size next to Hugging Face model links.".

Extensie Screenshots

screenshot

Download het CRX-bestand van de extensie Hugging Face Model Size

Download Hugging Face Model Size-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

                        An extension to display the size of the Machine Learning models hosted at HuggingFace.co                    

Basisinformatie over de Extensie

Naam Hugging Face Model Size Hugging Face Model Size
ID lfecfeomkhjblngolpfmpolfljocpkdg
Officiële URL https://chromewebstore.google.com/detail/hugging-face-model-size/lfecfeomkhjblngolpfmpolfljocpkdg
Beschrijving Displays model size next to Hugging Face model links.
Bestandsgrootte 12.26 KB
Aantal Installaties 131
Huidige Versie 1.1
Laatst Bijgewerkt 2023-06-05
Publicatiedatum 2023-05-31
Beoordeling 5.00/5 Totaal 3 Beoordelingen
Ontwikkelaar AI Northstar Tech
E-mail [email protected]
Betalingswijze free
URL van de Privacybeleid Pagina https://docs.google.com/document/d/1-OfPB9VzKU0K0nV8Mk8934a3A4qZ5yM18lClq0K4qXU/preview
Ondersteunde Talen en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Hugging Face Model Size",
    "version": "1.1",
    "description": "Displays model size next to Hugging Face model links.",
    "action": {
        "default_popup": "index.html",
        "default_icon": "icon.png"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/huggingface.co\/*"
            ],
            "js": [
                "content.js"
            ]
        }
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "icon.png"
            ],
            "matches": [
                "https:\/\/huggingface.co\/*"
            ]
        }
    ]
}