HTMLtoCSV
Exports HTML tables to CSV spreadsheets.
HTMLtoCSV क्या है?
HTMLtoCSV oldjamey द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Exports HTML tables to CSV spreadsheets."।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में HTMLtoCSV एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
A handy extension that scrapes HTML tables from the current page and adds buttons to download each table as individual CSV spreadsheets. Simple 2-step process: on the web page with data that you want to export, click the ultraball. All tables will be extracted from the page along with download buttons to export as CSV. Click the "Download as CSV" button to download the HTML table as a CSV spreadsheet. Saves all column headers and as much formatting as is available for CSV-formatted spreadsheets. If you need to get fancy with it and edit your spreadsheets before exporting, you may want to try "Instant Data Scraper" (no affiliation). This extension is barebones, vanilla JavaScript without any extra bells and/or whistles, in order to make your workflow as streamlined as possible.
एक्सटेंशन की मूल जानकारी
नाम | HTMLtoCSV |
ID | cebninopfmnhginjlgfilofjgaakiock |
आधिकारिक URL | https://chromewebstore.google.com/detail/htmltocsv/cebninopfmnhginjlgfilofjgaakiock |
विवरण | Exports HTML tables to CSV spreadsheets. |
फ़ाइल का आकार | 21.34 KB |
स्थापना संख्या | 257 |
वर्तमान संस्करण | 1.0 |
अंतिम अपडेट | 2022-02-25 |
प्रकाशन तिथि | 2022-02-24 |
डेवलपर | oldjamey |
ईमेल | [email protected] |
भुगतान के प्रकार | free |
समर्थित भाषाएँ | en,en-GB,en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "__MSG_appName__", "description": "__MSG_appDesc__", "version": "1.0", "manifest_version": 3, "default_locale": "en", "icons": { "16": ".\/img\/16.png", "32": ".\/img\/32.png", "19": ".\/img\/19.png", "38": ".\/img\/38.png", "48": ".\/img\/48.png", "128": ".\/img\/128.png" }, "background": { "service_worker": ".\/background.js" }, "action": { "default_icon": { "16": ".\/img\/16.png", "19": ".\/img\/19.png", "38": ".\/img\/38.png", "48": ".\/img\/48.png", "128": ".\/img\/128.png" } }, "permissions": [ "activeTab", "scripting" ], "host_permissions": [ "*:\/\/*\/*" ] } |