isheet

Scrape web data (HTML table or other list like fragments) and convert it to an excel like sheet

什麼是isheet?

isheet是由leopsidom開發的Chrome擴展程式,該擴展的主要功能是“Scrape web data (HTML table or other list like fragments) and convert it to an excel like sheet”。

擴展截圖

screenshot

下載isheet擴展crx文件

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

擴展使用說明

                        With this extension, it becomes easy to scrape data from web and convert it to an excel like sheet right on the page.

The usage is very straightforward, just right click inside an html table, then click isheet from the dropdown menu; 

This will generate an excel like sheet at the bottom of page which you can resize by dragging the top edge of sheet, and you can do operations in the sheet such as copy / paste, sort, download, delete / insert rows / columns etc.

You can expand or shrink the selection by clicking the + / - icons so you can get the content you need; And click the split and merge icons to further break down columns or reverse merging the columns;                    

擴展基本資訊

名稱 isheet isheet
ID mglgkilcpipfamlcfpghglopplaicobn
官方網址 https://chromewebstore.google.com/detail/isheet/mglgkilcpipfamlcfpghglopplaicobn
簡介 Scrape web data (HTML table or other list like fragments) and convert it to an excel like sheet
檔案大小 1.65 MB
安裝次數 390
目前版本 2.4.0
更新時間 2022-05-09
上架時間 2020-07-04
評分 3.67/5 共 3 次評分
開發者 leopsidom
電子郵箱 [email protected]
付費類型 free
支援的語言 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "isheet",
    "description": "Scrape web data (HTML table or other list like fragments) and convert it to an excel like sheet",
    "version": "2.4.0",
    "icons": {
        "128": "icon128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*\/*"
            ],
            "css": [
                "css\/fontawesome.min.css",
                "css\/regular.min.css",
                "css\/solid.min.css",
                "css\/material-icons.css"
            ],
            "js": [
                "packages\/jsuites\/jsuites.js",
                "packages\/jexcel\/jexcel.js",
                "main.js"
            ]
        }
    ],
    "action": {
        "default_icon": "icon19.png",
        "default_popup": "menu.html"
    },
    "permissions": [
        "activeTab",
        "contextMenus"
    ],
    "background": {
        "service_worker": "background.js"
    },
    "web_accessible_resources": [
        {
            "resources": [
                "style.css",
                "*.png",
                "packages\/*\/*.css",
                "css\/*",
                "fonts\/*",
                "fonts\/fa-webfonts\/*"
            ],
            "matches": [
                "*:\/\/*\/*"
            ]
        }
    ]
}