Table to CSV/JSON

Converts HTML tables in the page into csv or json

Table to CSV/JSON क्या है?

Table to CSV/JSON http://codex10.com द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Converts HTML tables in the page into csv or json"।

एक्सटेंशन स्क्रीनशॉट्स

screenshot
screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Table to CSV/JSON एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ 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
}