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 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
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" } |