Hugging Face Model Size

Displays model size next to Hugging Face model links.

Apa itu Hugging Face Model Size?

Hugging Face Model Size adalah ekstensi Chrome yang dikembangkan oleh AI Northstar Tech, dan fitur utamanya adalah "Displays model size next to Hugging Face model links.".

Screenshot Ekstensi

screenshot

Unduh Berkas CRX Ekstensi Hugging Face Model Size

Unduh file ekstensi Hugging Face Model Size dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.

Petunjuk Penggunaan Ekstensi

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

Informasi Dasar Ekstensi

Nama Hugging Face Model Size Hugging Face Model Size
ID lfecfeomkhjblngolpfmpolfljocpkdg
URL Resmi https://chromewebstore.google.com/detail/hugging-face-model-size/lfecfeomkhjblngolpfmpolfljocpkdg
Deskripsi Displays model size next to Hugging Face model links.
Ukuran File 12.26 KB
Jumlah Instalasi 131
Versi Saat Ini 1.1
Terakhir Diperbarui 2023-06-05
Tanggal Publikasi 2023-05-31
Penilaian 5.00/5 Total 3 Penilaian
Pengembang AI Northstar Tech
Email [email protected]
Tipe Pembayaran free
URL Halaman Kebijakan Privasi https://docs.google.com/document/d/1-OfPB9VzKU0K0nV8Mk8934a3A4qZ5yM18lClq0K4qXU/preview
Bahasa yang Didukung 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\/*"
            ]
        }
    ]
}