Scraping Helper

Automatically generate CSS selector for web structure analysis

What is Scraping Helper?

Scraping Helper is a Chrome extension developed by Weicheng Huang, and its main feature is "Automatically generate CSS selector for web structure analysis".

Extension Screenshots

screenshot
screenshot
screenshot
screenshot

Download Scraping Helper Extension CRX File

Download Scraping Helper extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        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                    

Extension Basic Information

Name Scraping Helper Scraping Helper
ID kmghfpaenbmakjffjhjncacmhagadgbg
Official URL https://chromewebstore.google.com/detail/scraping-helper/kmghfpaenbmakjffjhjncacmhagadgbg
Description Automatically generate CSS selector for web structure analysis
File Size 542 KB
Installation Count 5,096
Current Version 0.4
Last Updated 2021-05-31
Publish Date 2016-10-12
Rating 4.31/5 Total 13 Ratings
Developer Weicheng Huang
Email [email protected]
Payment Type free
Extension Website https://github.com/huangwc94/scraping-helper-chrome-extension
Supported Languages 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"
}