Tabulazer - Table Filter and Sorter

Filter, sort, page and style any existing HTML table using the Tabulator JS library.

Tabulazer - Table Filter and Sorterคืออะไร?

Tabulazer - Table Filter and Sorter เป็นส่วนขยายของ Chrome ที่พัฒนาโดย https://www.ryadel.com และคุณลักษณะหลักของมันคือ "Filter, sort, page and style any existing HTML table using the Tabulator JS library."

ภาพหน้าจอของส่วนขยาย

screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Tabulazer - Table Filter and Sorter

ดาวน์โหลดไฟล์ส่วนขยาย Tabulazer - Table Filter and Sorter ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        Do you work with websites featuring a lot of HTML tables? Would you like to filter, sort and/or page them?  If so, then this lightweight extension might be useful. 

You can use it to transform any standard table into a fully-featured interactive table with the following features:

➤ Real-time column sorting (and reverse sorting)
➤ Real-time column filtering (using full-text search)
➤ Width enlarge to 100% (to increase readability)
➤ Dynamic paging (useful for very long tables)
➤ Resizable columns (using mouse handlers)
➤ Copy & Paste support with CSV/Excel/Google Sheets support (using CTRL+C)

... and more!

Highly recommended if you're dealing with big tables and need to quickly extract relevant data from them.

--------------------------------------------------------------------
CONFIGURATION SETTINGS
--------------------------------------------------------------------

By clicking on the top-right button you'll access the configuration settings, where you'll be able to set the following options:

➤ Force table width to 100%. When enabled, the plugin will enlarge any HTML table to 100% width, thus taking all the available space on your browser. If the table is wrapped by other HTML container elements, those will also be enlarged/set to 100% in order to accomodate the table. If you don't want all this to happen, just keep it disabled.
➤ Enable sorting. Enable it to add sorting and reverse-sorting capabilities to all the HTML table columns: both can be activated by clicking (and double-clicking) to the column header itself.
➤ Enable filtering. Enable it to add filtering capabilities to all the HTML table columns: the filter will look like a standard HTML textbox that, if non-empty, will automatically update the table content, filtering out all the rows not containing the given text within that column.
➤ Enable paging. Enable it to add paging capabilities to the HTML table: notice that the filtering and sorting capabilities won't be affected by that (they will always take all rows into account).

--------------------------------------------------------------------
USAGE INFO
--------------------------------------------------------------------

Once you've set these options, right-click to a HTML table within any HTML page and select the Tabulazer context menu item to "tabulaze" it.

The transformation is done using Tabulator (http://tabulator.info/), a great table management JS library by Oli Folkerd.

➤ Tabulazer official page: https://www.ryadel.com/en/tabulazer-chrome-extension-filter-sort-html-table-tables/
➤ Fork me on GitHub: https://github.com/Darkseal/tabulazer                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ Tabulazer - Table Filter and Sorter Tabulazer - Table Filter and Sorter
ID ikfbkffbgkdghhnjfoomdkeifljlepah
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/tabulazer-table-filter-an/ikfbkffbgkdghhnjfoomdkeifljlepah
คำอธิบาย Filter, sort, page and style any existing HTML table using the Tabulator JS library.
ขนาดไฟล์ 1.22 MB
จำนวนการติดตั้ง 3,429
เวอร์ชันปัจจุบัน 0.7.5
อัปเดตครั้งล่าสุด 2019-10-06
วันที่เผยแพร่ 2019-10-05
คะแนน 4.88/5 รวมทั้งหมด 16 คะแนน
ผู้พัฒนา https://www.ryadel.com
อีเมล [email protected]
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://github.com/Darkseal/Tabulazer
URL หน้าช่วยเหลือ https://www.ryadel.com/en/tabulazer-chrome-extension-filter-sort-html-table-tables/
URL หน้านโยบายความเป็นส่วนตัว https://www.ryadel.com/privacy
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Tabulazer - Table Filter and Sorter",
    "version": "0.7.5",
    "manifest_version": 2,
    "description": "Filter, sort, page and style any existing HTML table using the Tabulator JS library.",
    "default_locale": "en",
    "homepage_url": "http:\/\/chrome-table-manager.ryadel.com",
    "icons": {
        "16": "icons\/icon16.png",
        "48": "icons\/icon48.png",
        "128": "icons\/icon128.png"
    },
    "browser_action": {
        "default_icon": "icons\/icon19.png",
        "default_title": "Tabulazer",
        "default_popup": "src\/browser_action\/browser_action.html"
    },
    "background": {
        "scripts": [
            "src\/background\/background.js"
        ],
        "persistent": false
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "css": [],
            "js": [
                "src\/content\/js\/content.js"
            ]
        }
    ],
    "permissions": [
        "activeTab",
        "contextMenus",
        "storage"
    ],
    "web_accessible_resources": [
        "lib\/*\/*",
        "src\/common\/*\/*"
    ],
    "content_security_policy": "script-src 'self' 'unsafe-eval' 'unsafe-inline'; object-src 'self'"
}