ScreenScraper
Tool to automatically grab data from sites
ScreenScraper là gì?
ScreenScraper là một tiện ích mở rộng Chrome được phát triển bởi https://bsalinas.com, và tính năng chính của nó là "Tool to automatically grab data from sites".
Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng
Tải xuống tệp CRX của tiện ích mở rộng ScreenScraper
Tải xuống các tệp mở rộng ScreenScraper dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.
Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng
Automatically grab sets of data from websites and download it as a CSV or JSON file. Basically, a small extension that acts as a screen scraper and lets your easily scrape data from a website. Let's say you have a website with:Joe SeattleJean AustinBen BostonGrab all that data by selecting ".foo" and then make columns for ".name", ".city", and the "src" attribute of "img". Enjoy your screen scraping!
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | ScreenScraper |
ID | pfegffhjcgkneoemnlniggnhkfioidjg |
URL Chính Thức | https://chromewebstore.google.com/detail/screenscraper/pfegffhjcgkneoemnlniggnhkfioidjg |
Mô tả | Tool to automatically grab data from sites |
Kích Thước Tệp | 135 KB |
Số Lần Cài Đặt | 4,020 |
Phiên Bản Hiện Tại | 0.3.1 |
Cập Nhật Lần Cuối | 2013-07-15 |
Ngày Phát Hành | 2013-07-15 |
Đánh Giá | 3.00/5 Tổng số 34 Đánh Giá |
Nhà Phát Triển | https://bsalinas.com |
Loại Thanh Toán | free |
Ngôn Ngữ Được Hỗ Trợ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "ScreenScraper", "description": "Tool to automatically grab data from sites", "version": "0.3.1", "icons": { "128": "logo_128.png", "48": "logo_48.png", "16": "logo_16.png" }, "content_security_policy": "script-src 'self' https:\/\/ssl.google-analytics.com; object-src 'self'", "content_scripts": [ { "all_frames": false, "js": [ "jquery-1.9.1.min.js", "myscript.js" ], "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ] } ], "browser_action": { "default_title": "ScreenScraper", "default_popup": "popup.html", "default_icon": { "19": "logo_19.png", "38": "logo_38.png" } }, "permissions": [ "http:\/\/*\/*", "https:\/\/*\/*", "tabs" ] } |