Scraping Helper
Automatically generate CSS selector for web structure analysis
什么是Scraping Helper?
Scraping Helper是由Weicheng Huang开发的Chrome扩展程序,该扩展的主要功能是“Automatically generate CSS selector for web structure analysis”。
扩展截图
下载Scraping Helper扩展crx文件
下载Scraping Helper扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
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
扩展基本信息
名称 | Scraping Helper |
ID | kmghfpaenbmakjffjhjncacmhagadgbg |
官方URL | https://chromewebstore.google.com/detail/scraping-helper/kmghfpaenbmakjffjhjncacmhagadgbg |
简介 | Automatically generate CSS selector for web structure analysis |
文件大小 | 542 KB |
安装次数 | 5,096 |
当前版本 | 0.4 |
更新时间 | 2021-05-31 |
上架时间 | 2016-10-12 |
评分 | 4.31/5 共13次评分 |
开发者 | Weicheng Huang |
电子邮箱 | [email protected] |
付费类型 | free |
扩展官网 | https://github.com/huangwc94/scraping-helper-chrome-extension |
支持的语言 | 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" } |