Table to CSV/JSON

Converts HTML tables in the page into csv or json

Что такое Table to CSV/JSON?

Table to CSV/JSON - это расширение Chrome, разработанное http://codex10.com, и его основная функция - "Converts HTML tables in the page into csv or json".

Снимки экрана расширения

screenshot
screenshot

Скачать файл CRX расширения Table to CSV/JSON

Скачайте файлы расширений Table to CSV/JSON в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.

Инструкции по использованию расширения

                        Right click on an HTML TABLE, choose CSV/JSON, and get the plain text version.

Note the JSON is a simple Array> format.                    

Основная информация о расширении

Название Table to CSV/JSON Table to CSV/JSON
ID lcmljkenflafolafllblkbchomcnaefi
Официальный URL https://chrome.google.com/webstore/detail/table-to-csvjson/lcmljkenflafolafllblkbchomcnaefi
Описание Converts HTML tables in the page into csv or json
Размер файла 25.68 KB
Количество установок 1,000
Текущая Версия 1.0.2
Последнее Обновление 2015-07-05
Дата публикации 2015-07-05
Рейтинг 2.82/5 Всего 11 оценок
Разработчик http://codex10.com
Тип оплаты free
Официальный сайт расширения http://codex10.com
Поддерживаемые языки en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Table to CSV\/JSON",
    "short_name": "HTMLTableConverter",
    "version": "1.0.2",
    "author": "Codex10",
    "description": "Converts HTML tables in the page into csv or json",
    "background": {
        "scripts": [
            "js\/background.js"
        ],
        "persistent": false
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "js\/lodash.min.js",
                "js\/index.js"
            ],
            "all_frames": true
        }
    ],
    "permissions": [
        "declarativeContent",
        "contextMenus"
    ],
    "homepage_url": "http:\/\/codex10.com",
    "icons": {
        "48": "assets\/icons\/icon-48.png",
        "128": "assets\/icons\/icon-128.png"
    },
    "web_accessible_resources": [
        "js\/blank.js"
    ],
    "manifest_version": 2
}