isheet

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

Τι είναι το isheet;

Το isheet είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον leopsidom, και η κύρια λειτουργία του είναι "Scrape web data (HTML table or other list like fragments) and convert it to an excel like sheet".

Στιγμιότυπα Επέκτασης

screenshot

Λήψη αρχείου CRX της επέκτασης isheet

Λήψη αρχείων επέκτασης 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
Επίσημο URL 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": [
                "*:\/\/*\/*"
            ]
        }
    ]
}