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 مع الأصدقاء لتثبيت الامتدادات بسهولة.

تعليمات استخدام التمديد

                        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
}