Hugging Face Model Size
Displays model size next to Hugging Face model links.
Vad är Hugging Face Model Size?
Hugging Face Model Size är en Chrome-tillägg utvecklad av AI Northstar Tech, och dess huvudfunktion är "Displays model size next to Hugging Face model links.".
Tilläggsskärmbilder
Ladda ner Hugging Face Model Size-förlängningens CRX-fil
Ladda ner Hugging Face Model Size-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.
Användarmanual för Tillägg
An extension to display the size of the Machine Learning models hosted at HuggingFace.co Grundläggande Information om Tillägg
| Namn | |
| ID | lfecfeomkhjblngolpfmpolfljocpkdg |
| Officiell webbadress | https://chromewebstore.google.com/detail/hugging-face-model-size/lfecfeomkhjblngolpfmpolfljocpkdg |
| Beskrivning | Displays model size next to Hugging Face model links. |
| Filstorlek | 12.26 KB |
| Antal Installationer | 131 |
| Aktuell Version | 1.1 |
| Senast Uppdaterad | 2023-06-05 |
| Publiceringsdatum | 2023-05-31 |
| Betyg | 5.00/5 Totalt 3 Betyg |
| Utvecklare | AI Northstar Tech |
| E-post | [email protected] |
| Betalningssätt | free |
| URL till Sekretesspolicy Sidan | https://docs.google.com/document/d/1-OfPB9VzKU0K0nV8Mk8934a3A4qZ5yM18lClq0K4qXU/preview |
| Stödda Språk | 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\/*"
]
}
]
} | |