TS Helper
Translate json object to ts interface
Co to jest TS Helper?
TS Helper to rozszerzenie Chrome opracowane przez NoneGame, a jego główną funkcją jest „Translate json object to ts interface”.
Zrzuty ekranu rozszerzenia
Pobierz plik CRX rozszerzenia TS Helper
Pobierz pliki rozszerzeń TS Helper w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.
Instrukcja Użytkowania Rozszerzenia
TypeScript is a great programming language, but it takes a lot of time to write the type's declaration, especially when describing the content returned by REST-API. The extension can convert a JSON object into a typescript interface definition.
Usage:
Select JSON object text and right click, after context menu shows, click "Copy as TS interface". Podstawowe informacje o rozszerzeniu
| Nazwa | |
| ID | hpmhflhgjoldggdbpifnacemkankmche |
| Oficjalny URL | https://chromewebstore.google.com/detail/ts-helper/hpmhflhgjoldggdbpifnacemkankmche |
| Opis | Translate json object to ts interface |
| Rozmiar pliku | 41.89 KB |
| Liczba instalacji | 119 |
| Aktualna Wersja | 1.2 |
| Ostatnia Aktualizacja | 2022-06-21 |
| Data Publikacji | 2021-12-12 |
| Ocena | 5.00/5 Łącznie 1 Oceny |
| Deweloper | NoneGame |
| [email protected] | |
| Typ Płatności | free |
| Obsługiwane Języki | en-US |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"name": "TS Helper",
"description": "Translate json object to ts interface",
"version": "1.2",
"manifest_version": 3,
"background": {
"service_worker": "background.js",
"type": "module"
},
"permissions": [
"activeTab",
"scripting",
"contextMenus"
],
"action": {
"default_icon": {
"48": "\/images\/harmmer48.png",
"72": "\/images\/harmmer72.png",
"96": "\/images\/harmmer96.png",
"144": "\/images\/harmmer144.png",
"192": "\/images\/harmmer192.png"
}
},
"icons": {
"48": "\/images\/harmmer48.png",
"72": "\/images\/harmmer72.png",
"96": "\/images\/harmmer96.png",
"144": "\/images\/harmmer144.png",
"192": "\/images\/harmmer192.png"
}
} | |