TS Helper
Translate json object to ts interface
Что такое TS Helper?
TS Helper - это расширение Chrome, разработанное NoneGame, и его основная функция - "Translate json object to ts interface".
Снимки экрана расширения
Скачать файл CRX расширения TS Helper
Скачайте файлы расширений TS Helper в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
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".
Основная информация о расширении
Название | TS Helper |
ID | hpmhflhgjoldggdbpifnacemkankmche |
Официальный URL | https://chromewebstore.google.com/detail/ts-helper/hpmhflhgjoldggdbpifnacemkankmche |
Описание | Translate json object to ts interface |
Размер файла | 41.89 KB |
Количество установок | 119 |
Текущая Версия | 1.2 |
Последнее Обновление | 2022-06-21 |
Дата публикации | 2021-12-12 |
Рейтинг | 5.00/5 Всего 1 оценок |
Разработчик | NoneGame |
Электронная почта | [email protected] |
Тип оплаты | free |
Поддерживаемые языки | 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" } } |