-
Notifications
You must be signed in to change notification settings - Fork 16
Chrome extension
Sigit Dewanto edited this page Dec 31, 2019
·
6 revisions
You can install the extension from Chrome Web Store or build them on your own (see instruction below).
- Install NodeJS and NPM
- Clone Webdext repository
git clone [email protected]:seagatesoft/webdext.git
- Enter Webdext directory and run
npm install
- Run
gulp build-chrome
and the extension files will be built intobuild
directory
- Open
chrome://extensions/
on your Chrome/Chromium - Check "Developer mode" checkbox
- Click "Load unpacked extension" button
- Browse to the directory where the extension files are saved and click "Open"
- Open a web page containing list of data records.
- Click Webdext icon on the toolbar.
- Click "Intelligent Extract" button, wait for a few seconds.
- Extracted data records will be displayed in a new tab.
- Intelligent extraction can find more than 1 data region. Use pagination to get your data region of interest.
- You can give label to the column and remove unnecessary column.
- You can export the data to CSV/JSON format by clicking "Export Data" button.
- You can create an XPath extractor (wrapper) and store it for the next usage. Webdext will learn the XPath extractor based on currently displayed data region. You could do it by clicking "Save Extractor" button and then type the name of your extractor. Note that you must keep the original web page tab open to create the extractor. Extraction using XPath extractor is faster than extraction using Intelligent Extraction.
- Open a web page containing list of data records and using template that can be processed by an existing extractor.
- Click Webdext icon on the toolbar.
- Click "Use Existing Extractor" button.
- Click "Extract" button below your extractor of choice.
- Extracted data records will be displayed in a new tab.
- You can export the data to CSV/JSON format by clicking "Export Data" button.
- Click Webdext icon on the toolbar.
- Click "List of Existing Extractors" button.
- List of existing extractors will be displayed on a new tab.
- You can view the internal details (XPaths) of an extractor by clicking "Show" button.
- You can also delete an extractor and create a new one manually.