Hugging Face Model Size

Displays model size next to Hugging Face model links.

What is Hugging Face Model Size?

Hugging Face Model Size is a Chrome extension developed by AI Northstar Tech, and its main feature is "Displays model size next to Hugging Face model links.".

Extension Screenshots

screenshot

Download Hugging Face Model Size Extension CRX File

Download Hugging Face Model Size extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

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

Extension Basic Information

Name Hugging Face Model Size Hugging Face Model Size
ID lfecfeomkhjblngolpfmpolfljocpkdg
Official URL https://chromewebstore.google.com/detail/hugging-face-model-size/lfecfeomkhjblngolpfmpolfljocpkdg
Description Displays model size next to Hugging Face model links.
File Size 12.26 KB
Installation Count 131
Current Version 1.1
Last Updated 2023-06-05
Publish Date 2023-05-31
Rating 5.00/5 Total 3 Ratings
Developer AI Northstar Tech
Email [email protected]
Payment Type free
Privacy Policy Page URL https://docs.google.com/document/d/1-OfPB9VzKU0K0nV8Mk8934a3A4qZ5yM18lClq0K4qXU/preview
Supported Languages 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\/*"
            ]
        }
    ]
}