Hugging Face Model Size

Displays model size next to Hugging Face model links.

什么是Hugging Face Model Size?

Hugging Face Model Size是由AI Northstar Tech开发的Chrome扩展程序,该扩展的主要功能是“Displays model size next to Hugging Face model links.”。

扩展截图

screenshot

下载Hugging Face Model Size扩展crx文件

下载Hugging Face Model Size扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

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

扩展基本信息

名称 Hugging Face Model Size Hugging Face Model Size
ID lfecfeomkhjblngolpfmpolfljocpkdg
官方URL https://chromewebstore.google.com/detail/hugging-face-model-size/lfecfeomkhjblngolpfmpolfljocpkdg
简介 Displays model size next to Hugging Face model links.
文件大小 12.26 KB
安装次数 131
当前版本 1.1
更新时间 2023-06-05
上架时间 2023-05-31
评分 5.00/5 共3次评分
开发者 AI Northstar Tech
电子邮箱 [email protected]
付费类型 free
隐私政策页面URL https://docs.google.com/document/d/1-OfPB9VzKU0K0nV8Mk8934a3A4qZ5yM18lClq0K4qXU/preview
支持的语言 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\/*"
            ]
        }
    ]
}