Plucker

Pluck data from HTML tables.

什麼是Plucker?

Plucker是由ArlingtonCoder開發的Chrome擴展程式,該擴展的主要功能是“Pluck data from HTML tables.”。

擴展截圖

screenshot

下載Plucker擴展crx文件

下載Plucker擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        Plucker is a targeted screen-scraping utility for Chrome browsers.  It requires no setup whatsoever and is used for plucking data out of a table-driven presentation from a web page.  

The screenshot to the left is a very obvious "table" of data.  Once Plucker is installed, right-click anywhere in the table and choose "Pluck."  That's it -- you can now right-click the table again and choose Plucker/Download to download your data as a CSV, which will open right up in any spreadsheet package.  

For tables with multiple pages of data, right-click/Pluck the first page of data, as normal, then simply page through the rest of the pages, giving Plucker a second or two to pluck the data from each one.  Once you get to the last page, Plucker will have plucked all the data from all pages.                    

擴展基本資訊

名稱 Plucker Plucker
ID meeedeecefnlccpmgfeoadnjibegfege
官方網址 https://chrome.google.com/webstore/detail/plucker/meeedeecefnlccpmgfeoadnjibegfege
簡介 Pluck data from HTML tables.
檔案大小 69.74 KB
安裝次數 690
目前版本 1.0.1
更新時間 2015-03-24
上架時間 2015-03-24
評分 4.40/5 共 10 次評分
開發者 ArlingtonCoder
付費類型 free
支援的語言 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Plucker",
    "short_name": "Plucker",
    "description": "Pluck data from HTML tables.",
    "version": "1.0.1",
    "manifest_version": 2,
    "permissions": [
        "contextMenus",
        "storage",
        "tabs"
    ],
    "options_page": "options.html",
    "background": {
        "persistent": true,
        "scripts": [
            "background.js",
            "jquery-1.7.min.js"
        ]
    },
    "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'",
    "icons": {
        "16": "Plucker16.png",
        "32": "Plucker32.png",
        "48": "Plucker48.png",
        "128": "Plucker128.png"
    },
    "page_action": {
        "default_title": "Pluck",
        "default_icon": "Plucker16.png"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "content.js",
                "jquery-1.7.min.js"
            ],
            "all_frames": true,
            "run_at": "document_end"
        }
    ]
}