Web Scraper, Easy, Visual Web Data Extractor

Web Scraper, Easy, Visual Web Data Extractor

Vad är Web Scraper, Easy, Visual Web Data Extractor?

Web Scraper, Easy, Visual Web Data Extractor är en Chrome-tillägg utvecklad av Web Scraper, och dess huvudfunktion är "Web Scraper, Easy, Visual Web Data Extractor".

Tilläggsskärmbilder

screenshot
screenshot
screenshot
screenshot
screenshot

Ladda ner Web Scraper, Easy, Visual Web Data Extractor-förlängningens CRX-fil

Ladda ner Web Scraper, Easy, Visual Web Data Extractor-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

                        With Web Scraper for Chrome Browser, you can get data from the current webpage easily by clicking on the data fields when you hover your mouse over the data fields on any webpage. When Web Scraper finds a repeating data pattern, an orange shadow will appear on the repeating data fields with similar patterns. After you left-click mouse button, the data preview pane will be filled with the selected data.

To add more data columns, simply click on more repeating data fields. If you click on an unwanted data field, you can simply click the "Delete Icon" on the data preview pane.

After extracting the data from the web page, you can export it as a CSV file. You can open this CSV data file with Microsoft Excel on Windows or Numbers on Mac.

I hope you enjoy my extension. Please leave your feedback if you have any ideas for improvement on it, and thank you very much for your support.

Finally, you can watch this 1-minute video to better see its capabilities:

https://youtu.be/U0halSVCBAc                    

Grundläggande Information om Tillägg

Namn Web Scraper, Easy, Visual Web Data Extractor Web Scraper, Easy, Visual Web Data Extractor
ID gakfcdkhpeipmjojaleebpnhmeemiajl
Officiell webbadress https://chromewebstore.google.com/detail/web-scraper-easy-visual-w/gakfcdkhpeipmjojaleebpnhmeemiajl
Beskrivning Web Scraper, Easy, Visual Web Data Extractor
Filstorlek 59.14 KB
Antal Installationer 321
Aktuell Version 1.11
Senast Uppdaterad 2022-10-12
Publiceringsdatum 2022-10-11
Betyg 1.00/5 Totalt 1 Betyg
Utvecklare Web Scraper
E-post [email protected]
Betalningssätt in_app
Stödda Språk en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Web Scraper, Easy, Visual Web Data Extractor",
    "description": "Web Scraper, Easy, Visual Web Data Extractor",
    "version": "1.11",
    "manifest_version": 3,
    "background": {
        "service_worker": "background.js"
    },
    "permissions": [
        "activeTab",
        "scripting"
    ],
    "content_scripts": [
        {
            "css": [
                "popup.css"
            ],
            "matches": [
                "*:\/\/*\/*",
                "file:\/\/*\/*"
            ]
        }
    ],
    "action": {
        "default_icon": {
            "16": "\/images\/webScraper16.png",
            "32": "\/images\/webScraper32.png",
            "48": "\/images\/webScraper48.png",
            "128": "\/images\/webScraper128.png"
        }
    },
    "web_accessible_resources": [
        {
            "resources": [
                "\/images\/save_icon.png",
                "\/images\/move_icon.png",
                "\/images\/delete_icon.png",
                "\/images\/close_icon.png",
                "popup.html"
            ],
            "matches": [
                "*:\/\/*\/*",
                "file:\/\/*\/*"
            ]
        }
    ],
    "icons": {
        "16": "\/images\/webScraper16.png",
        "32": "\/images\/webScraper32.png",
        "48": "\/images\/webScraper48.png",
        "128": "\/images\/webScraper128.png"
    }
}