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 |
Eメール | [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" } |