Sheets To JSON
Download JSON from Google Sheets
Что такое Sheets To JSON?
Sheets To JSON - это расширение Chrome, разработанное ntarasiuk, и его основная функция - "Download JSON from Google Sheets".
Снимки экрана расширения
Скачать файл CRX расширения Sheets To JSON
Скачайте файлы расширений Sheets To JSON в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
Easily download your Google Sheets data as JSON files.
Perfect for integrating with other applications or storing your data in a more portable format.
How to use:
Just click the "JSON" button in the toolbar in sheet you want to download.
The JSON file will be saved to your computer.
Troubleshooting:
Make sure your first row is a header row with header names or it may not work.
* This extension isn't meant to convert a complicated sheet, just a simple sheet with headers and row data.
If you like it, please rate it 5 stars! :) Основная информация о расширении
| Название | |
| ID | enmkalgdnmcaljdfkojckdbhkjmffmoa |
| Официальный URL | https://chromewebstore.google.com/detail/sheets-to-json/enmkalgdnmcaljdfkojckdbhkjmffmoa |
| Описание | Download JSON from Google Sheets |
| Размер файла | 4.56 KB |
| Количество установок | 4,000 |
| Текущая Версия | 0.3 |
| Последнее Обновление | 2023-11-26 |
| Дата публикации | 2023-06-24 |
| Рейтинг | 3.50/5 Всего 16 оценок |
| Разработчик | ntarasiuk |
| Электронная почта | [email protected] |
| Тип оплаты | free |
| Официальный сайт расширения | https://www.linkedin.com/in/ntarasiuk |
| Поддерживаемые языки | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"name": "Sheets To JSON",
"action": [],
"manifest_version": 3,
"version": "0.3",
"description": "Download JSON from Google Sheets",
"content_scripts": [
{
"matches": [
"https:\/\/docs.google.com\/spreadsheets\/d\/*"
],
"js": [
"getJSON.js"
],
"run_at": "document_end",
"all_frames": true
}
]
} | |