Scraping Helper
Automatically generate CSS selector for web structure analysis
Scraping Helper là gì?
Scraping Helper là một tiện ích mở rộng Chrome được phát triển bởi Weicheng Huang, và tính năng chính của nó là "Automatically generate CSS selector for web structure analysis".
Ả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 Scraping Helper
Tải xuống các tệp mở rộng Scraping Helper 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 generate CSS selector for web structure analysis Feature: * Automatically generate CSS selector for web structure analysis * Inspect element attributes * Generate reference code Updates: * Rewrite app with React and Antd * Add python and js sample code * Add English translation v0.4 This extension is still testing, please use at your caution Install: After install the extension, please refresh the page before "launch" the extension
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | Scraping Helper |
ID | kmghfpaenbmakjffjhjncacmhagadgbg |
URL Chính Thức | https://chromewebstore.google.com/detail/scraping-helper/kmghfpaenbmakjffjhjncacmhagadgbg |
Mô tả | Automatically generate CSS selector for web structure analysis |
Kích Thước Tệp | 542 KB |
Số Lần Cài Đặt | 5,096 |
Phiên Bản Hiện Tại | 0.4 |
Cập Nhật Lần Cuối | 2021-05-31 |
Ngày Phát Hành | 2016-10-12 |
Đánh Giá | 4.31/5 Tổng số 13 Đánh Giá |
Nhà Phát Triển | Weicheng Huang |
[email protected] | |
Loại Thanh Toán | free |
Trang Web Mở Rộng | https://github.com/huangwc94/scraping-helper-chrome-extension |
Ngôn Ngữ Được Hỗ Trợ | en,zh-CN |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "__MSG_extName__", "description": "__MSG_extDescription__", "version": "0.4", "icons": { "128": "icon.png" }, "browser_action": { "default_icon": "icon.png", "default_popup": "popup.html" }, "permissions": [ "activeTab", "tabs" ], "web_accessible_resources": [ "icon.png", "panel.html" ], "content_scripts": [ { "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "css": [ "css\/global.css" ], "js": [ "js\/content.bundle.js" ] } ], "default_locale": "en" } |