Creeper
Scrape data from list-style web pages. There are samples for demo. Very easy to use. One minute configuration by just clicking.
Τι είναι το Creeper;
Το Creeper είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον hui.chu, και η κύρια λειτουργία του είναι "Scrape data from list-style web pages. There are samples for demo. Very easy to use. One minute configuration by just clicking.".
Στιγμιότυπα Επέκτασης
Λήψη αρχείου CRX της επέκτασης Creeper
Λήψη αρχείων επέκτασης Creeper σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.
Οδηγίες Χρήσης της Επέκτασης
Creeper is a scraping extension, focusing on list-style web pages. Users don't need to know any knowledge of html and css, although it is better to know them. Creeper cannot scrape data from all web pages, but only list-style pages. List-style pages have rows, each of which has almost same fields. User need to click html elments to tell Creeper which one is row element, which ones are field element, and which one is paging element. Creeper can then generate a sitemap template guide how to capture these data. There are some list-style pages: http://stackoverflow.com/search?page=2&tab=relevance&q=mysql%20restore%20deleted%20records http://marketplace.eclipse.org/search/site/%2522python%2522 https://www.linkedin.com/jobs/?trk=nav_responsive_sub_nav_jobs Steps to user Creeper: 1) Click the Creeper icon in the right top corner to open sitemap list; 2) Click the button "Create Sitemap" to open a form to define a sitemap for the current opend web page in the browser. 3) Click the button "Edit" to open sitemap detailed form, where you can click "Test" to scrape some sample data. 4) Click the button "Run" to scrape according sitemap. 4) After scraping, data will display in a table. You can export as csv file.
Βασικές Πληροφορίες Επέκτασης
Όνομα | Creeper |
ID | dfcfifdniniafdhnblehebkcnkoncdpj |
Επίσημο URL | https://chromewebstore.google.com/detail/creeper/dfcfifdniniafdhnblehebkcnkoncdpj |
Περιγραφή | Scrape data from list-style web pages. There are samples for demo. Very easy to use. One minute configuration by just clicking. |
Μέγεθος Αρχείου | 340 KB |
Αριθμός Εγκαταστάσεων | 250 |
Τρέχουσα Έκδοση | 0.931 |
Τελευταία Ενημέρωση | 2017-01-20 |
Ημερομηνία Δημοσίευσης | 2017-01-20 |
Αξιολόγηση | 3.25/5 Συνολικά 4 Αξιολογήσεις |
Προγραμματιστής | hui.chu |
Ηλεκτρονικό ταχυδρομείο | [email protected] |
Τύπος Πληρωμής | free |
Υποστηριζόμενες Γλώσσες | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "__MSG_app_name__", "short_name": "__MSG_app_name__", "description": "__MSG_app_description__", "version": "0.931", "manifest_version": 2, "default_locale": "en", "permissions": [ "*:\/\/*\/*", "tabs", "storage", "unlimitedStorage" ], "background": { "scripts": [ "background\/TabManager.js", "lib\/model.js", "background\/Coordinator.js", "background\/controller.js" ], "persistent": true }, "browser_action": { "default_icon": "assets\/icon_16.png", "default_title": "__MSG_app_name__", "default_popup": "popup\/popup.html" }, "icons": { "16": "assets\/icon_16.png", "128": "assets\/icon_128.png" }, "web_accessible_resources": [ "start.html", "lib\/jquery\/jquery-2.1.1.min.js", "lib\/mustache.min.js", "lib\/model.js", "injected\/define\/define.css", "injected\/define\/define.html", "injected\/define\/define.js", "injected\/check.png" ] } |