Download table as CSV
Download HTML tables in MS Excel style CSV format.
ما هو Download table as CSV؟
Download table as CSV هو إضافة Chrome تم تطويرها بواسطة arktiv، والميزة الرئيسية لها هي "Download HTML tables in MS Excel style CSV format.".
لقطات شاشة التمديد
تحميل ملف CRX للإضافة Download table as CSV
قم بتنزيل ملفات الامتداد Download table as CSV بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.
تعليمات استخدام التمديد
Simple to use! Right click on the table, then select 'Download table as CSV' from the context menu. Alternatively you can click the icon and then click on the table to download The extension downloads the HTML tables in MS Excel style CSV format. Images will be show in the CSV file as the source URL. Inputs and text-areas will be indicated in the CSV file with a '(i)' Support for UTF-8 with BOM (Special thanks to mantaroh) - You can toggle this in the extensions popup. Note: Sometimes special characters, symbols will not look as you might expect, this is not a bug, rather a limitation of the format. Attempts to follow RFC4180 Source code: https://github.com/arktiv/table-csv-chrome
معلومات أساسية عن التمديد
الاسم | Download table as CSV |
ID | jgeonblahchgiadgojdjilffklaihalj |
عنوان URL الرسمي | https://chromewebstore.google.com/detail/download-table-as-csv/jgeonblahchgiadgojdjilffklaihalj |
الوصف | Download HTML tables in MS Excel style CSV format. |
حجم الملف | 8.34 KB |
عدد التثبيتات | 20,000 |
النسخة الحالية | 1.6 |
آخر تحديث | 2023-11-27 |
تاريخ النشر | 2020-05-30 |
تقييم | 4.33/5 مجموع تقييمات 39 |
المطور | arktiv |
البريد الإلكتروني | [email protected] |
نوع الدفع | free |
موقع الإضافة | https://github.com/arktiv/table-csv-chrome |
عنوان صفحة المساعدة | https://github.com/arktiv/table-csv-chrome |
اللغات المدعومة | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Download table as CSV", "description": "Download HTML tables in MS Excel style CSV format.", "version": "1.6", "manifest_version": 2, "permissions": [ "contextMenus", "activeTab", "storage" ], "background": { "scripts": [ "background.js" ], "persistent": false }, "browser_action": { "default_popup": "popup.html" }, "icons": { "32": "icons\/32x32.png", "64": "icons\/64x64.png", "128": "icons\/128x128.png" } } |